@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Dancing+Script:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.bg-light-gradient {
  background: linear-gradient(90deg, #f9f9f9, #e9e9e9);
  background: -webkit-linear-gradient(90deg, #f9f9f9, #e9e9e9);
}

.bg-black-blue-linear-gradient-lg-shadow {
  background: linear-gradient(rgb(0, 0, 0), rgba(30, 144, 255, 0.9));
  background: -webkit-linear-gradient(rgb(0, 0, 0), rgba(30, 144, 255, 0.9));
  box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
}

.title {
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-style: normal;
}

.cursive {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 992px) {
  .dark {
    background: #2a359b;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 244, 0, 0.8));
  }
  .dark * {
    color: white !important;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-20%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.delay-1 {
  animation-delay: 0.5s;
}

.delay-2 {
  animation-delay: 1s;
}

.delay-3 {
  animation-delay: 1.5s;
}

.delay-4 {
  animation-delay: 2s;
}

.delay-5 {
  animation-delay: 2.5s;
}

.delay-6 {
  animation-delay: 3s;
}

.delay-7 {
  animation-delay: 3.5s;
}

.delay-8 {
  animation-delay: 4s;
}

.delay-9 {
  animation-delay: 4.5s;
}

.delay-10 {
  animation-delay: 5s;
}

.delay-11 {
  -webkit-animation: fadeIn 1s ease-in-out 5.5s both;
  -o-animation: fadeIn 1s ease-in-out 5.5s both;
  animation: fadeIn 1s ease-in-out 5.5s both;
}

/*# sourceMappingURL=main.css.map */
