* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  font-family: "Poppins", sans-serif;
  min-height: 100dvh;
  background-image: url("img/bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  margin: auto;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.logo {
  margin: 0 auto;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 3rem;
  text-align: center;
}

.description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.contact-details {
  display: flex;
  gap: 1.5rem;
  align-self: center;
}

.contact-details__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-details__item a {
  color: #fff;
}

.contact-details__item a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.gradient-line {
  align-self: center;
  background-image: linear-gradient(270deg, #021240 0%, #1e69c3 100%);
  border-radius: 9999px;
  height: 6px;
  max-width: 400px;
  width: 100%;
}

.timer {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 1.25rem;
}

.timer__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.timer__number {
  font-size: 2rem;
  line-height: 3rem;
}

.timer__unit {
  font-size: 0.75rem;
  line-height: 1.125rem;
}

.timer__colon {
  display: flex;
  flex-direction: column;
  align-self: start;
  justify-content: center;
  gap: 0.75rem;
  height: 3rem;
}

.timer__circle {
  background-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  height: 8px;
  width: 8px;
}

.video {
  align-self: center;
  aspect-ratio: 16/9;
  max-width: 584px;
  width: 100%;
}

@media (min-width: 1200px) {
  .container {
    padding-bottom: 7.5rem;
  }

  .timer {
    gap: 2.5rem;
  }

  .timer__number {
    font-size: 2.5rem;
    line-height: 3.75rem;
  }

  .timer__unit {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .timer__colon {
    height: 3.75rem;
  }
}
