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

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  font-family: 'Poppins', sans-serif; /* Nuovo font */
  color: #FFC514;
}

.container {
  margin: 0 auto;
  text-align: center;
  max-width: 90%;
}

/* Stile dei Titoli */
h1 {
  font-weight: 300; /* Più leggero */
  letter-spacing: .2rem;
  text-transform: uppercase;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Stile del Countdown */
#countdown {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 197, 20, 0.3);
  border-bottom: 1px solid rgba(255, 197, 20, 0.3);
  margin: 2rem 0;
}

#countdown ul {
  display: flex;
  justify-content: center;
  gap: 2rem; /* Spazio tra gli elementi */
}

li {
  display: inline-block;
  list-style-type: none;
  text-transform: uppercase;
  text-align: center;
}

/* Numeri del countdown */
li span {
  display: block;
  font-size: 4rem;
  font-weight: 500; /* Più marcato */
  line-height: 1.2; /* Migliore interlinea */
}

/* Etichette (MESI, GIORNI...) */
li {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: .1rem;
}

/* Responsive per schermi piccoli */
@media all and (max-width: 768px) {
  h1 {
    font-size: 1rem;
  }
  
  #countdown ul {
    gap: 1.5rem;
  }

  li span {
    font-size: 3rem;
  }

  li {
    font-size: 0.7rem;
  }
}