body{
    background-color: var(--backC);
    color: var(--mainColor);
}

#backImage{
    mix-blend-mode:normal;
    filter: blur(0px);
}

#nav{
    display: flex;
    position: relative;
    margin-top: 1vw;
    font-size: var(--fontInter);
    flex-wrap: nowrap;
    justify-content: space-between;
    left: 26vw;
    width: 70%;
    height: 5vw;
    margin-bottom: 0;
}


#nav a{
    cursor: pointer;
    transition: .2s;
}

#nav a:hover{
    filter: blur(2px);
}

#wrapHead{
    display: block;
    position: sticky;
    width: 100%;
    top: 0vw;
}

#header{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 24%;
    text-transform: uppercase;
    font-family: trouble;
    height: max-content;
    text-align: justify;
    padding: 1vw;
    font-size: var(--fontInter);
    text-align-last: justify;
    padding-bottom: 1vw;
}

#getMenu{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: fixed;
    top : 0;
    right: 0;
    margin: 1vw;
    height: 2vw;
    z-index: 100;
    width: 2vw;
}


#getMenu span{
    display: block;
    width: 100%;
    height: 18%;
    transition: .2s;
    border-radius: 10px;
    
}

.menuLong{
    width: 90vw;
}
.menuShort{
    width: 25vw;
}

.getMenuOff span{
    background-color: var(--mainColor);

}

.getMenuOn span{
    background-color: var(--mainColor);

}

#lang{
    display: block;
    position: fixed;
    bottom: 1vw;
    right: 1vw;
    font-family: trouble;
    font-size: var(--textS);
}

#wrapContent{
    padding: 0vw 5vw;
    font-size: var(--textS);
    text-align: justify;
    line-height: 1.15;
}

#listeArticle{
    display: grid;
    position: relative;
    backdrop-filter: blur(.6rem);
    padding: var(--smallMarge);
    padding-bottom: 5vw;
    grid-template-columns: repeat(3, 1fr);
    grid-gap : 5vw;
}

.articleDebat{
    text-align: center;
    display: flex;
    
    justify-content: center;
    flex-direction: column;
    padding-bottom: var(--smallMarge);
}

.articleDebat span{
    display: block;
}

.titleArt{
    font-family: trouble;
    font-size:var(--fontInter);
    text-transform: uppercase;
}


img{
    max-width: 50vw;
    max-height: 50vh;
    border-radius: 50px;
    height: auto;
    width: auto;
}

.imgArticle::after{
    display: block;
    white-space: pre;
    content: " ";
}

#wrapContent h1{

    font-size: var(--fontTitleLess);;
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-family: trouble;
}




h1::after{
    display: block;
    content: " ";
    font-size: var(--textS);
    white-space: pre;
}

p::after{
    display: block;
    content: " ";
    white-space: pre;
}

@media (orientation:portrait) {

    #getMenu{
        margin: 2vw;
        width: 5.5vw;
        z-index: 5;
        cursor: pointer;
        height: 5.5vw;
    }

    #wrapHead{
        position: relative;
    }


    #header{
        margin: 0 2vw;
        top : 1.5vw;
        position: sticky;
        width: 87%;
        font-size: 7.5vw;
        padding-bottom: 0;
    }

    #nav{
        display: none;
    }

    #wrapContent h1{
        display: block;
        font-family: trouble;
        width: 100%;
        margin: 0;
        text-transform: uppercase;
        font-size: var(--fontTitle);
        text-align: center;
    }

    #wrapContent{
        margin: 5vw 0;
    }


    #listeArticle{
        padding: var(--smallMarge);
        padding-bottom: 5vw;
        grid-template-columns: repeat(1, 1fr);
        grid-gap : 5vw;
    }

    
}