header {
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.logoSite{
    width:50px;
    height:50px;
}

nav {
    position: fixed;
    width: 100%;
    top: 0px;
    background-color: #2d2d34;
    height: 80px;
    text-align: center;
}


nav hr {
    position: fixed;
    width: 100%;
    background-color: #2d2d34;
}

nav a {
    display: block;
    padding: 10px 0px;
    text-decoration: none;
}


nav ul {
    display: inline-flex;
    height: 100%;
    align-items: center;
}


.MenuItem {
    padding: 0px 20px;
}

.triangle {
    color: white;
}


    nav>ul li:hover .sous {
        display: block;
        position: absolute;
        z-index: 1;
    }

/*SMALL SCREENS*/
@media screen and (max-width: 768px) {

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: black;
        color: white;
    }

    nav>ul li:hover .sous {
        display: block;
        position: relative;
        z-index: 1;
    }
    .menu-button {
        display: block;
        background-color: #2ecc71;
        border: none;
        border-radius: 8px;
        color: #ffffff;
        text-align: center;
        font-size: 14px;
        width: 60px;
        height: 60px;
        cursor: pointer;
        margin: 1% 2%;
        z-index: 2;
        transition: background-color 0.3s ease;
    }

    .menu-button:hover {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #222323;
        z-index: 1;
        text-align: center;
        height: fit-content;
    }

    .navbar ul.show-menu {
        display: flex;
        flex-direction: column;
    }

   

}