#banniere {
    /* Type de display*/
    display: flex;
    flex-direction: column;

    /* La forme */
    background-color: #555555;
    padding: 0;
    justify-content: center;

    /* Les alignements */
    align-items: center;
    object-fit: contain;
    width: 100%;
}

.image-filter {
    filter: invert(100%);
    -webkit-filter: invert(100%);
    transition: filter 0.3s;
}

a:hover {
    color: #b1e810;
}
.sous-liens {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sous-liens br {

    content: "";
    display: block;
    margin-bottom: 10px;

}

#logo {
    display: flex;
    resize: none;
    object-fit: contain;
}

#devanture {
    display: flex;
    object-fit: contain;
    color: white;
    flex-direction: column;
    justify-content: center;
}

#liens {
    display: flex;
    flex-direction: row;
    text-decoration: none;
    justify-content: center;
    align-items: baseline;
    width: 100%;
    font-size: 15px;
    background-color: black;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-top: 23px;
}

#liens div {
    padding-left: 2%;
    padding-right: 2%;
}

.sign {
    position: absolute;
    right: 30px;
    top: 20px;
}

.sign a {
    font-family: Montserrat;
}

.br1 {
    line-height: -120px;
}

@media screen and (min-width: 1200px) {
    #banniere #logo img {
        margin-top: 23px;
    }
}

@media screen and (max-width: 1200px) {

    .sign {
        display: none;
    }

    #liens {
        display: flex;
        flex-direction: column;
        text-decoration: none;
        padding: 1em;
        justify-content:space-around;
        align-items: center;
        width: 80%;
        font-size: 30;
        display: none;
    }
    
    #logo {
        display: flex;
        resize: none;
        object-fit: contain;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #logo img[width="170"] {
        margin-top: 23px;
    }
    
    #devanture {
        justify-content: center;
            align-items: center;
            text-align: center;
            font-size: 20px;
    }
}

#sentence {
    padding-left: 0.7em;
    padding-bottom: 1em;
}

.menu-toggle {
    display: none;
    position: absolute;
    top: 10px;
    /* Ajustez la position verticale selon vos besoins */
    left: 10px;
    /* Ajustez la position horizontale selon vos besoins */
}

.menu-toggle label {
    display: block;
    padding: 10px;
    cursor: pointer;
    font-size: 40px;
    color: white;
}

.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: none;
    /* Masque le menu par défaut sur mobile */
    background-color: #f9f9f9;
    position: absolute;
    top: calc(100% + 10px);
    /* Utilisation de calc pour ajouter un espace entre le bouton et le menu */
    left: 0;
    width: calc(100% + 200px);
    /* Utilisation de calc pour ajuster la largeur du menu */
    text-align: center;
    border-radius: 5px;
    border: solid;
    /* Ajout d'une bordure arrondie */
    transition: display 250ms ease-out;
}

.menu li {
    padding: 15px;
    /*border-bottom: 1px solid #5f5f5f;*/
    position: relative;
}

.menu li:last-child {
    border-bottom: none;
}

.menu li:not(:last-child)::after {
    content: '';
    /* Ajoute un contenu pseudo-élément */
    position: absolute;
    /* Position absolue pour les séparateurs */
    bottom: 0;
    /* Place les séparateurs au bas de chaque élément */
    left: 50px;
    /* Ajustez la position des séparateurs selon vos besoins */
    right: 50px;
    /* Ajustez la position des séparateurs selon vos besoins */
    border-bottom: 1px solid #363636;
    /* Style du séparateur */
}
.menu a {
    text-decoration: none;
    color: black;
}

/* Affiche le menu lorsqu'il est coché */
.menu-toggle input[type="checkbox"]:checked~.menu {
    display: block;
}

.menu-toggle input[type="checkbox"] {
    display: none;
    /* Masque la case à cocher par défaut */
}

/* Affiche le menu sur mobile */
@media screen and (max-width: 1200px) {
    .menu-toggle {
        display: block;
        z-index: 10;
    }
}