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: 24vw;
}

.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);
}

.getData{
    display: block;
    cursor: pointer;
    text-transform: capitalize;
    transition: .2s;
}

.getData:hover{
    filter: blur(2px);
    color: var(--ndColor);
}

#wrapContent{
    padding: 0vw 1vw;
    transition: .2s;
    position: relative;
    column-count: 4;
    font-size: calc(var(--textS)* .8);
    text-align: justify;

    line-height: 1.25;
}

.key{
    font-family: trouble;
}

#results{
    display: block;
    position: fixed;
    bottom: 0;
    transition: .3s;
    left: 0;
    width: 100%;
}

.padM{
    padding: .5vw 2vw;
}

#rkey{
    display: block;
    color: var(--ndColor);
    background-color: var(--mainColor);
    font-family: trouble;
    border-radius: 15px 15px 0 0;
}

#bott{
    display: block;
    position: absolute;
    top: .5vw;
    cursor: pointer;
    right: 2vw;
    transform-origin: center;
    transform: rotate(90deg);
    color: white;
    z-index: 2;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
}

#searchResult{
    margin-top: -15px;
    background-color: white;
    color: black;
    transition: .3s;
    max-height: 65vh;
    border-radius: 15px 15px 0 0;
    overflow-y: scroll;
    column-count: 4;
    gap: 2vw;
    width: calc(100% - 4vw);
}

.numo{
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 1vw 0;
}

.numo h1{
    width: 100%;
    font-family: trouble;
    font-size: var(--textS);
    text-transform: uppercase;
}

.titreAd{
    font-family: adelphe;
}

.num a{
    display: block;
    font-size: 1vw;
}

.keyBack {
    font-size: 1vw;
    font-weight: bolder;
    transition: .2s;
    cursor: pointer;
    margin-right: 1vw;
}
.keyBack:hover{
    filter: blur(3px);
}

.numo a::after, .numo h1::after{
    display: block;
    content: " ";
    white-space: pre;
}

.author{
    display: block;
    text-align: right;
}



@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;
        column-count: 2;
        padding: 0vw 5vw;
    }


    #searchResult{
        margin-top: -15px;
        background-color: white;
        color: black;
        transition: .3s;
        max-height: 65vh;
        border-radius: 15px 15px 0 0;
        overflow-y: scroll;
        column-count: 1;
        gap: 2vw;
        width: calc(100% - 4vw);
    }
 

    .padM{
        padding: 3vw 5vw;
    }

    .numo{
        width: 90%;
        padding: 3vw 0;
    }
    
    #bott{
     
        top: 3vw;
        right: 5vw;
    }

}