.countdown-content {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}


.countdown-content p {
  margin: 0px;
  color: white;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
 
  font-family: "Orbitron", sans-serif;
  letter-spacing: 3px;
  font-weight: bold;
}


.countdown-content span {
  margin: 0px;
  color: white;
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  font-family: "NexaLight", sans-serif;
 
  letter-spacing: 2px;
  font-weight: bold;
}


.contdown-content-space {
  border-radius: 6px;
  width: 100%;
  max-width: 600px;
  border: 2px solid #ffffffff;
  background: linear-gradient(
    180deg,
    rgba(0, 26, 63, 0.5) 0%,
    rgba(11, 59, 135, 0.7) 50%,
    rgba(4, 29, 80, 1) 100%
  );
}


@media screen and (min-width: 576px) {
  .countdown-content p {
    font-size: 1.75rem !important;
  }


  .countdown-content span {
    font-size: 1.15rem !important;
  }


  .coutdown-content-item:not(:last-of-type) {
    border-right: 2px solid #ffffffd1;
  }
}

