body {
    background-color: #dad7cd; 
    color: #1a1a1a;
    font-family: 'IBM Plex Mono', monospace;
    margin: 0;
    padding: 40px;
}

.titre {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    border-bottom: 5px solid #000;
    padding-bottom: 20px;
    margin-bottom: 50px;
}
.box1 {
    font-size: 64px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -3px;
    margin: 0;
    line-height: 0.8;
}
.box2 {
    display: flex;
    align-items: center;
    gap: 15px;
}
  .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 {
    font-size: 11px;
    color: #555;
    font-weight: 400;
  }

  .phrase {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
  }
  
  button {
  background-color: #000;
    color: #dad7cd;
    border: none;
    padding: 8px 20px;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
  }