body {
    display: flex;
    justify-content: center;
    height: 100vh;
    background-color: #f5f5f5;
    color: #333;
    padding: 20px;
    width: 70%;
    margin: auto;
    overflow: hidden;
}

.title--big {
    font-family: "Geologica", sans-serif;
    font-weight: bold;
    font-size: clamp(2rem, 3.718vw + 0.663rem, 5.125rem);
    text-transform: uppercase;
} 

.grid-container {
    display: grid;
    grid-template-columns: auto 2fr; /* Colonne gauche fixe à 100px, droite flexible */
    gap: 2em; /* Espacement entre les colonnes */
    align-items: baseline; /* Alignement vertical des items */
    margin-bottom: 3em; /* Espacement entre les phrases */
}

.numero {
    font-family: 'Liter', serif;
    font-size: clamp(1rem, 2.436vw + 0.452rem, 3.375rem);
    line-height: 150%;
}

.phrase {
    font-family: 'Liter', serif;
    font-size: clamp(1rem, 2.436vw + 0.452rem, 3.375rem);
    line-height: 150%;
}

/* Numero champ de saisie */
.numero-input {
  font-size: clamp(1rem, 2.436vw + 0.452rem, 3.375rem);
  font-family: 'Liter', serif;
  width: 80px;
  text-align: center;
  border: none;
  background: none;
  outline: none;
  color: #333;
}