body {
 background-color: whitesmoke;
   margin-left:20px;

}

.titre {

}
.box1 {

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

.numero {

}

.phrase {

}
#ensemble-title {

}
button {
    margin-top: 50px;
  width: 100px;
  display: flex;
  border-radius: 20px;
  padding:10px;
  background-color: yellow;
  border: none;
  justify-content: center;
  color:rgb(60, 60, 60)
}
button:hover {
  border:2px solid yellow;
  background-color: whitesmoke;
}