.countdown {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#timer {
  display: flex;
  justify-content: space-around;
}

#timer .bg-contagem {
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  background: rgb(255, 255, 255);
  background: linear-gradient(140deg, rgba(247, 251, 255, 0.719) 0%, rgb(197, 243, 255) 75%, rgba(231, 239, 255, 0.603) 100%);
  margin: 0 5px;
}

.leg-contagem {
  background-color: rgba(0, 0, 0, 0) !important;
}

#timer div div {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgb(1, 0, 39);
}

.regress-numbers {
  font-size: 2rem;
  font-weight: bold;
  color: rgb(2, 1, 53);
}

@media (max-width: 768px) {
  #timer div div {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .regress-numbers {
    font-size: 2rem;
  }
}

