body {
    display: flex;
    height: 100vh;
    background-color: #f5f5f5;
    color: #333;
    width: 70%;
    margin: auto;
}

.titre {
    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 3fr; /* 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%;
}
button {
    display: none;
}
    /*     display: inline-block;
    padding: 0.2em 1em;
    font-family: 'Liter', serif;
    text-decoration: none;
    color: #333;
    background-color:#f5f5f5;
    border-style: none;
    cursor : pointer;   
    border-radius: 1em;
    border: #333 solid 1px;

button:hover {
    cursor: pointer;
    background-color: #333;
    color: #f5f5f5;
} */

/* slider */
.slider-container {
    display: flex;
    justify-content: start;
}

#ensemble-slider {
    width: 75%;
    height: 5px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

#ensemble-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
}

#ensemble-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
}
