body {
    margin: 0;
    overflow-x: hidden;
    /* Empêche le défilement horizontal */
}

.overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

nav {
    position: absolute;
    top: 0;
    width: 100%;
    height: 80px;
    background: #003478;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 3;
}

nav .Button {
    font-family: Arial, Helvetica, sans-serif;
    color: #f7f6f6;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #f7f6f6;
    border-radius: 20px;
    background-color: #003478;
    display: inline-block;
    width: 150px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}



nav #Button:hover {
    text-decoration: none;
    /* Supprime le soulignement au survol */
    background-color: #002760;
    /* Change la couleur de fond au survol */
}

nav img {
    width: 150px;
    /* Ajustez cette valeur selon la taille désirée */
    height: auto;
    border: none;
    /* Aucune bordure pour l'image centrale */
}

@media (max-width: 900px) {
    nav img {
        position: absolute;
        top: 0;
        left: 55%;
        transform: translateX(-60%);
        /* Ajustez cette valeur selon la taille désirée */
    }

    nav {
        position: absolute;
        top: 0;
        width: 100%;
        height: 80px;
        padding-top: 80px;
        background: #003478;
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 3;
    }

    nav .Button {
        font-family: Arial, Helvetica, sans-serif;
        font-size: small;
        color: #f7f6f6;
        text-decoration: none;
        padding: 10px 15px;
        border: 2px solid #f7f6f6;
        border-radius: 20px;
        background-color: #003478;
        display: inline-block;
        width: 70px;
        height: 30px;
        margin: 2px;
        text-align: center;
        line-height: 1;
    }


}