body {
  background-color: #272b30;
  font-family: "Comfortaa", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: cursive;
  font-weight: 400;
  line-height: 1.2;
}
.wraper {
  max-height: 30vh;
  object-fit: cover;
}
.navbar {
  margin: -30px auto 0 auto;
  background-color: #3a497b;
  border-radius: 20px;
  box-shadow: 0 0 10px rgb(0 0 0 / 0.7);
}
.nav-item .nav-link.active,
.nav-item .nav-link:hover {
  color: #09c !important;
  transition: color 0.5s;
}
.active {
  color: #09c !important;
  transition: color 0.5s;
}
.home .card {
  filter: grayscale(0.7);
  transition: transform 0.5s, filter 0.5s 0.1s;
}

header img {
  max-height: 30vh;
  object-fit: cover;
}

.home .card:hover {
  transform: scale(1.05);
  filter: grayscale(0);
}
/* ----------SPINNER------------- */

.spinner {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: #272b30e3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid #fff;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: relative;
}
.loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border-left: 4px solid #ff3d00;
  border-bottom: 4px solid transparent;
  animation: rotation 0.5s linear infinite reverse;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
