body {
  overflow: hidden;
}

* {
  font-family: "Alexandria", sans-serif !important;
}

.image-container {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-container .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
}

.image-container .text h1 {
  color: white;
  font-size: 150px;
  text-align: center;
  margin-bottom: 3.8rem;
  font-weight: 700;
}

.image-container .text h2 {
  color: white;
  font-size: 80px;
  text-align: center;
}

@media (max-width: 600px) {
  .image-container .text h1 {
    font-size: 100px;
  }

  .image-container .text h2 {
    font-size: 60px;
  }
}
#countdown {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  align-items: center;
}
#countdown p {
  font-size: 2.5rem;
  color: white;
  width: fit-content;
}

#countdown ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
}
#countdown ul li {
  color: white;
  font-size: 2.5rem;
}
