body {
  font-family: "alda", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;

  margin: 20px;

  background-color: rgb(182, 198, 208);
}

.container{
  margin-bottom: 40px;
}

h1{
    font-family: "adobe-caslon-pro", serif;
    font-weight: 600;
    font-style: italic;
    font-size: clamp(1.75rem, 1.655vw + 1.362rem, 2.5rem);
}

.titre {
    font-family: "adobe-caslon-pro", serif;
    font-weight: 400;
    font-size: clamp(1.75rem, 1.655vw + 1.362rem, 2.5rem);
}

.box1, .box2 {
  display: flex;
  justify-content: center;
}


.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 */
}

.phrases{
  margin-left: 80px;
}

button {
  background-color: rgb(7, 44, 107);
  color: #fff;
  padding: 10px;
  border-radius: 20px;
  cursor: pointer;
}

.phrase {
    font-size: clamp(1.25rem, 1.103vw + 0.991rem, 1.75rem);
    margin: 20px 0 57px 28px;
}

.numero{
    font-weight: 700;
    color: rgb(7, 44, 107);
    font-size: clamp(0.875rem, 0.828vw + 0.681rem, 1.25rem);
}
.numero--blanc{
  color: #fff;
}