@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&family=Orbitron:wght@600&display=swap");

.s-center {
  text-align: center;
}

.flex {
  display: flex;
}

.main-banner {
  font-family: Manrope, sans-serif;
  background: #215f00; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to left,
    #e4e4d9,
    #215f00
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to left,
    #e4e4d9,
    #215f00
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #fff;
}

@media screen and (min-width: 1024px) {
  .grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    margin: auto;
  }
}

/*--------------------------------------------------------------
# Tittle and Description
--------------------------------------------------------------*/
.tittle {
  font-family: Orbitron, sans-serif;
  font-size: 1.5rem;
}

.descrption {
  font-size: 0.8rem;
}

@media screen and (min-width: 1024px) {
  .s-center {
    text-align: left;
  }

  .tittle {
    font-size: 2.5rem;
    margin-top: 5rem;
  }
}

/*--------------------------------------------------------------
# Countdown
--------------------------------------------------------------*/
.countdown {
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

@media screen and (min-width: 1024px) {
  .countdown {
    justify-content: flex-start;
  }
}

.countdown-item {
  padding: 0 0.75rem;
  align-items: center;
  position: relative;
}

.countdown-item:not(:last-of-type):before {
  position: absolute;
  right: 0;
  content: "";
  display: block;
  width: 1px;
  height: 50%;
  background: #fff;
  opacity: 0.5;
}

.countdown-number {
  font-size: 1.75em;
  font-weight: bold;
  margin-right: 0.25rem;
  color: aqua;
}

.countdown-letter {
  opacity: 0.5;
}

/*--------------------------------------------------------------
# Suscription Form
--------------------------------------------------------------*/
.form-container {
  height: 2.5rem;
  margin-bottom: 4rem;
}

.form {
  display: inline-flex;
}

.input {
  line-height: 2.5rem;
  width: 15rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0 0.5rem;
  border-radius: 0.25rem 0 0 0.25rem;
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.button {
  padding: 0 1rem;
  border-radius: 0 0.25rem 0.25rem 0;
  border: none;
}

.form-hint {
  font-size: 0.7rem;
  margin: 1rem 0 5rem;
}
