
.countdown {
  background: #eee;
  height: 287px;
  width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  flex-wrap: wrap;
}

.timer,
.signup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: space-around;
}

.timer h3 {
  font-weight: 700;
  font-size: 22px;
}

.signup h1 {
  max-width: 350px;
  text-align: center;
  font-weight: 400;
  font-size: 26px;
}



.counter {
  display: flex;
  max-width: fit-content;
  gap: 0.75em;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.counter__box {
  text-align: center;
  background: blue;
  width: 10vw;
  height: 10vw;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0.4rem;
}

.counter__time {
  font-size: 4vw;
  margin: 0;
  padding: 0;
  font-weight: bold;
}

.counter__duration {
  font-size: 2vw;
  text-transform: capitalize;
  margin: 0;
  padding: 0;
  color: #eee;
}

/* HELPERS */

.dots {
  font-size: 6vw;
  color: #d0dadf;
  margin: -0.75rem;
  padding: 0;
}

.exp {
  font-size: 52px;
  font-family: "Roboto", sans-serif;
}

.black-white {
    display: block;
  background: linear-gradient(
    to top,
    #0f1214 0%,
    #111416 50%,
    rgb(8, 10, 10) 50%,
    #16181a 100%
  );
}

.sky-blue {
  background: linear-gradient(
    to top,
    #009edb 0%,
    #009edb 50%,
    rgba(127, 206, 236, 0.95) 50%,
    rgba(127, 206, 236, 0.95) 100%
  );
}