body {
  font-family: 'Noto Sans', sans-serif;
}

h2 {
  font-weight: 700;
}

.main-navbar {
  background-color: green;
}

.bg-info {
  color: red;
}

.news-block {
  background-image: url(img/slide-1.webp);
  background-size: cover;
  background-position: center;
  height: 20rem;
  display: flex;
}

.box {
  max-width: 20rem;
  height: auto;
  margin: auto;
  padding: 1rem;
  border: 1px green solid;
  border-radius: 4px;
  background-color: rgb(238, 206, 156, 0.45);
  box-shadow: 0 0 10px rgb(161, 161, 161 0.8);
}

.shadow {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5) !important;
}

.text-shadow {
  text-shadow: 0 0 5px black !important;
}

.opacity {
  opacity: 50%;
}

.background-green {
  background-color: green;
}

.gradient-pink-grey {
  background: linear-gradient(rgb(199, 100, 117), rgb(136, 125, 125));
  background-clip: text;
  color: transparent;
}

.gradient-yellow-orange {
  background: linear-gradient(yellow, orange);
  background-clip: text;
  color: transparent;
}

.gradient-blue {
  background: linear-gradient(rgb(0, 255, 221), rgb(13, 0, 255));
  background-clip: text;
  color: transparent;
}