.contador-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  text-align: center;
  padding: 6rem 18rem;
}

.contador {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.numero {
  font-size: 5rem;
  font-weight: 900;
  color: #b11f72;
}

.texto {
  margin-top: 0.5rem;
  font-size: 2rem;
  color: #333;
  font-weight: 600;
  line-height: 2rem;
}

@media screen and (max-width:600px){
.contador-container {padding: 3rem;}
}