/* CSS Document */
body {
    width: 895px;
    margin: 0 auto; /* Centrer la page */
    font-family: sans-serif;
}
table {
    width: 100%;
    border-collapse: collapse;
}
td {
    padding: 5px;
    vertical-align: middle;
}
#entete {
    text-align: center;
    font-size: 2em;
}
#menu {
    border: 2px solid black;
}
#menu td {
    width: auto; 
    height: 40px;
    text-align: center;
}
/*
#menu td:last-child {
    width: auto;
}
*/
#menu a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: black;
    line-height: 40px;
}
#menu a.active {
    background-color: black;
    color: white;
}
.contact-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: black;
    color: white;
    text-decoration: none;
    border: 2px solid black;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}
.contact-button:hover {
    background-color: white;
    color: black;
}
#contenu {
    text-align: justify; /* Pour justifier le texte du contenu */
}
#contenu .titre-section {
    margin-bottom: 5px;
}

#contenu .titre-section + p {
    margin-top: 5px;
}