#blocHeader{
    width:100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 20px 0 20px 0;
}

#titreHeader {
    width: 100%;
    border: 2px var(--myBlack) solid;
    height: 50px;
    color: var(--myBlack);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--myTheme);
    font-size: 1.5vmax;
}
.navStyle{
    display: flex;
    justify-content: flex-end;
    background: transparent;
}
.navStyle{
    font-size: 1.5vmax;
}
.Menu{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

@media screen and (max-width: 1000px) {
    #titreHeader {
        font-size: 30px;
        word-wrap: break-word;
        height: auto;
        text-align: center;
    }
    
    .navStyle{
        border-bottom: 1px ridge black;
    }
    .Menu{
        align-items: center;
    }
    .nav-link{
        border: 1px ridge black;
        margin:10px;
        text-align: center;
        background: var(--myTheme);
        color: black !important ;
        font-weight: bold !important ;
        font-size: 16px;
        width: 60% !important; 
    }
}