@keyframes slideInFromTop {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOutToRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(10vw);
    opacity: 0;
  }
}

.hidden {
  display: none;
}

.showing {
  opacity: 1;
}

.slideIn {
  animation: slideInFromTop 1s ease-out forwards;
}

.slideOut {
  animation: slideOutToRight 1s ease-in forwards;
}

#uniqueCountdownContainer {
  opacity: 0;
  transform: translateX(0vw);
}

/* swiper js-------- */
@font-face {
  font-family: "RetroFans";
  src: url("./retrofans-font-1730506089-0/retrofans-oblique.otf")
    format("opentype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "RetroFans", sans-serif;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
