body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

.container {
    width: 80%;
    margin: auto;
    padding-top: 20px;
}

.logo {
    max-width: 50%;
    height: auto;
    padding: 15px;
}

.text-box {
    border: 0.5px solid gold;
    margin-top: 20px;
    margin-bottom: 60px;
    padding: 15px;
    text-align: left;
}

.author {
    display: block;
    margin-top: 10px;
}

.profil-container {
    text-align: center; 
    margin-top: 30px;
    margin-bottom: 30px;
}

.profil {
    max-width: 120px;
    height: auto; 
}

.footer {
    margin-top: 30px;
    font-size: 0.8em;
}

a {
    color: gold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.email-button {
    margin-top: 10px;
    background-color: gold; /* Couleur de fond */
    color: white; /* Couleur du texte */
    border: none; /* Pas de bordure */
    padding: 10px 20px; /* Padding pour augmenter la taille du bouton */
    text-decoration: none; /* Supprime le soulignement du lien */
    font-weight: bold; /* Rend le texte en gras */
    border-radius: 5px; /* Bordures arrondies */
    cursor: pointer; /* Curseur en forme de main */
    display: inline-block; /* Permet d'appliquer le padding et d'autres styles de bloc */
}

.email-button:hover {
    background-color: darken(gold, 10%); /* Assombrir le bouton lors du survol (nécessite un préprocesseur CSS comme SASS) */
    /* Vous pouvez remplacer par une autre couleur si vous n'utilisez pas SASS */
}
