@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;700&family=Roboto:wght@700&display=swap");
body {
  display: grid;
  place-items: center;
  height: 90vh;
  font-family: "Nunito Sans", sans-serif;
  color: #002e46;
}
.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 {
  //flex: 1;
  //border: 1px solid red;
  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;
}

.btn {
  display: inline-block;
  min-width: 280px;
  padding: 10px 28px;
  background: #009edb;
  font-size: 26px;
  color: white;
  text-decoration: none;
  text-align: center;
}

.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: 89px;
  height: 103px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0.25rem;
}

.counter__time {
  font-size: 3rem;
  margin: 0;
  padding: 0;
  font-weight: bold;
}

.counter__duration {
  font-size: 0.8rem;
  text-transform: capitalize;
  margin: 0;
  padding: 0;
  color: #eee;
}

/* HELPERS */

.dots {
  font-size: 52px;
  color: #002e46;
  margin: -0.75rem;
  padding: 0;
}

.exp {
  font-size: 52px;
  font-family: "Roboto", sans-serif;
}

.black-white {
  background: linear-gradient(
    to top,
    #002e46 0%,
    #002e46 50%,
    #4d707f 50%,
    #4d707f 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%
  );
}
