body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #d3d3d3;
    /* Couleur de fond légèrement plus foncée */
    color: #333;
}

header {
    background-color: #b0b0b0;
    /* Couleur de fond légèrement plus foncée pour le header */
    color: #006400;
    /* Couleur de police vive pour le header */
    padding: 0.3em;
    text-align: center;
}

nav {
    background-color: #6c757d;
    /* Couleur vive mais pas trop éclatante pour la navbar */
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

li {
    float: left;
}

a {
    display: block;
    color: #ffffff86;
    text-align: center;
    padding: 12px 16px;
    text-decoration: none;
}

a:hover {
    background-color: #5a6268;
    color: #ffffff;
    transition: background-color 0.3s ease;
    border-radius: 12.5px;
}

.dropdown {
    display: inline-block;
    border-radius: 12.5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #6c757d;
    box-shadow: 0 8px 16px 0 rgba(36, 1, 1, 0.2);
    z-index: 1;
    border-radius: 12.5px;
}

.dropdown:hover .dropdown-content {
    display: block;
    border-radius: 12.5px;
}

section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h2 {
    color: #006400;
    /* Couleur de police vive pour les titres */
    border-bottom: 2px solid #6c757d;
    padding-bottom: 10px;
}

p {
    line-height: 1.6;
    color: #555;
}

.dropdown-content a:visited {
    color: #000000;
}

#sticky-footer {
    background-color: #b0b0b0;
    color: #333;
    text-align: center;
    padding: 0.5em;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    border-top: 2px solid #6c757d;
}

a.mail {
    color: #333;
}

.logo img {
    width: 50px;
    height: auto;
}

footer {
    background-color: #d3d3d3;
    color: #333;
    text-align: center;
    padding: 1em;
    border-top: 2px solid #6c757d;
}

blockquote {
    margin: 0 auto;
    max-width: 540px;
    text-align: center;
}

#scrollUp {
    position: fixed;
    bottom: 10px;
    right: 0px;
    opacity: 0.5;
}