body {
  margin: 0;
  font-family: Poppins, sans-serif;
  background-color: #008eaa;
  display: flex;
  height: 100vh;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 16px;
  padding-bottom: 3rem;
  overflow: hidden;
}

header {
  position: absolute;
  width: 100vw;
  top: 0;
  overflow: visible;
  padding-bottom: 21.5844785772%;
}
@media screen and (min-width: 1560px) {
  header {
    background: url("/gfx/header.png") no-repeat center top/contain;
  }
}
header img {
  position: relative;
  top: 6.25rem;
  left: 40%;
  transform: translate(-100%, 0);
  max-width: 80vw;
}
@media screen and (max-width: 1560px) {
  header img {
    left: 50%;
    transform: translate(-50%, 0);
  }
}

.container {
  padding-top: 21.875rem;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-inline: 50px;
  min-height: 100vh;
}
@media screen and (max-width: 1500px) {
  .container {
    padding-top: 18rem;
  }
}
.container .lines {
  position: absolute;
  bottom: -300px;
  left: 0;
  z-index: -1;
}
.container .logo-aim {
  position: absolute;
  top: 0px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 992px) {
  .container .logo-aim {
    right: initial;
    left: 60vw;
  }
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
  max-width: 100vw;
}
.countdown div {
  box-shadow: 0 32px 150px rgba(0, 131, 159, 0.15);
  background: #ffffff;
  color: #000000;
  border-radius: 1.25rem;
  text-align: center;
  padding: 20px;
  width: 20%;
  max-width: 9.375rem;
}
@media screen and (max-width: 992px) {
  .countdown div {
    padding: 20px 15px;
  }
}
.countdown div #days,
.countdown div #hours,
.countdown div #minutes,
.countdown div #seconds {
  font-size: 4rem;
  opacity: 0;
  animation: fadeIn 1.5s ease-in 1s forwards;
  color: #000000;
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  .countdown div #days,
  .countdown div #hours,
  .countdown div #minutes,
  .countdown div #seconds {
    font-size: 2rem;
  }
}
.countdown div span {
  display: block;
  font-size: 1.5rem;
  opacity: 0;
  animation: fadeIn 1s ease-in 1.5s forwards;
  color: #008eaa;
  font-weight: normal;
  margin-top: 0.625rem;
}
@media screen and (max-width: 992px) {
  .countdown div span {
    font-size: 1rem;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.message {
  font-size: 3rem !important;
  margin-bottom: 3rem;
}
@media screen and (max-width: 992px) {
  .message {
    font-size: 2rem !important;
  }
}
.message span {
  font-size: 2rem;
  font-weight: 200;
  display: block;
}
@media screen and (max-width: 992px) {
  .message span {
    font-size: 1.5rem !important;
  }
}

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.circles .circle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}
.circles .circle.small {
  width: 3.125rem;
  height: 3.125rem;
  animation: float 6s ease-in-out infinite;
}
.circles .circle.medium {
  width: 6.25rem;
  height: 6.25rem;
  animation: float 6s ease-in-out infinite;
}
.circles .circle.large {
  width: 9.375rem;
  height: 9.375rem;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.25rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.625rem);
  }
  100% {
    transform: translateY(0);
  }
}/*# sourceMappingURL=styles.css.map */