body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    /* Changement de couleur de fond */
}

header {
    background-color: #343a40;
    /* Couleur de fond plus sombre */
    color: #0dbf63;
    padding: 0.3em;
    /* Réduction de la hauteur de la barre du header */
    text-align: center;
}

nav {
    background-color: #17a2b8;
    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: white;
    text-align: center;
    padding: 12px 16px;
    /* Réduction de la hauteur des liens */
    text-decoration: none;
}

a:hover {
    background-color: #138496;
    /* Nouvelle couleur au survol */
    color: white;
    transition: background-color 0.3s ease;
    /* Ajout d'une transition pour un effet en douceur */
}

.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #17a2b8;
    /* Nouvelle couleur de fond */
    box-shadow: 0 8px 16px 0 rgba(36, 1, 1, 0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    /* Ajout d'une bordure arrondie */
}

h2 {
    color: #333;
    border-bottom: 2px solid #17a2b8;
    /* Ajout d'une ligne de séparation sous le titre */
    padding-bottom: 10px;
    /* Espace entre le titre et la ligne de séparation */
}

p {
    line-height: 1.6;
    color: #555;
}

.dropdown-content a:visited {
    color: #000000;
}

#sticky-footer {
    background-color: #343a40;
    /* Couleur de fond plus sombre */
    color: white;
    text-align: center;
    padding: 0.5em;
    /* Réduction de la hauteur du footer */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    border-top: 2px solid #17a2b8;
    /* Ajout d'une bordure en haut du pied de page */
}
 a.mail{
    color:black
 }

 .logo img {
     width: 50px;
     height: auto;
 }

 /* Style pour redimensionner l'image */
 img {
     width: 300px;
     /* ou toute autre taille souhaitée */
     height: auto;
     /* Pour maintenir les proportions de l'image */
 }