@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;600;700&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Lato", sans-serif;
    background-color: #F2F2F2;
    flex-direction: column;
}

h1 {
    font-size: 24px;
    font-weight: 500;
    color: #575757;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 5px;
}


.contador {
  width: 100%;
  max-width: 860px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 26px;
  padding: 30px;
}

.grupo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.numeros {
  display: flex;
  gap: 4px;
}

.digito {
  width: 120px;
  height: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8b8b8b;
  border-radius: 15px;
  font-size: 122px;
  line-height: 1;
  font-weight: 700;
  color: #f2f2f2;
  overflow: hidden;
}

.legenda {
  margin-top: 10px;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: #b6b6b6;
}

@media (max-width: 850px) {

  .contador {
    max-width: 600px;
    gap: 18px;
    padding: 20px;
  }

  .digito {
    width: 80px;
    height: 110px;
    border-radius: 11px;
    font-size: 82px;
  }

  .legenda {
    font-size: 22px;
  }

}

@media (max-width: 600px) {

  .contador {
    width: 100%;
    gap: 10px;
    padding: 15px;
  }

  h1 {
    font-size: 16px;
  }

  .numeros {
    gap: 3px;
  }

  .digito {
    width: 52px;
    height: 74px;
    border-radius: 8px;
    font-size: 56px;
  }

  .legenda {
    margin-top: 8px;
    font-size: 15px;
  }

}

@media (max-width: 380px) {

  .contador {
    gap: 7px;
    padding: 10px;
  }

  .digito {
    width: 45px;
    height: 65px;
    font-size: 49px;
  }

  .legenda {
    font-size: 13px;
  }

}