/* Style général */
body {
    font-family: 'Didot', 'Copperplate Gothic', sans-serif;
    background-color: #ffffff;
    color: #081c32;
    margin: 0;
    padding: 20px;
}

/* Centrer le titre Informations */
.center {
    text-align: center;
}

/* Section d'informations */
.info-section {
    max-width: 600px; /* Contrainte de largeur pour un affichage propre */
    margin: 0 auto; /* Centré horizontalement */
}

/* Titres des sections (sauf le titre principal) alignés à gauche */
h3 {
    text-align: left;
    font-size: 1.8em;
    margin-bottom: 15px;
}

/* Boutons */
.button-section {
    margin-bottom: 30px; /* Espace sous les boutons */
    text-align: left; /* Aligner les boutons à gauche */
}

.btn {
    display: block; /* Chaque bouton sur une nouvelle ligne */
    padding: 15px 20px;
    background-color: #081c32;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 1.1em;
    margin: 10px 0; /* Espace entre les boutons */
    max-width: 100%; /* Prendre toute la largeur disponible */
    text-align: left; /* Alignement du texte à gauche */
}

.btn:hover {
    background-color: #FF5733;
}
