*{
        margin: 0;
        padding: 0;
        --headerWidth:10vw; 
        --filetSize:2px;
        --bgColor : #898782;
        --bleu : #2F2F6B;
        --orange : #FFB06A;
        --rose : #EEB4D3;
        --blanc : #ffffff;
        --mFadHeight:10vh;
}

body{
    display: flex ;
    background-color: var(--bgColor);
    color: var(--bleu);
    font-family: LK_GASIL;
    font-weight: 600;
    width: 100%;
    scrollbar-color: var(--bleu);
}


header{
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    width: var(--headerWidth);
    min-width: 230px;
    height: 94vh;
    border-right: solid var(--filetSize) var(--bleu);
    background-color: var(--bgColor);
    margin : 3vh 0;
    padding: 0 2vw;
    z-index: 100;
}

.menuContainer{
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    min-width: 0;
}

.listProj{
    flex : 1 1 auto;
    overflow: scroll;
    scrollbar-color: var(--bleu) transparent;
}

li{
    transition: all 0.1s ease-out;
}

.listProj li:hover{
    cursor: pointer;
    padding-left: 1rem;
    color: var(--orange);
}

li:last-of-type{
    padding-bottom: var(--mFadHeight);
}

.siteInfos{
    position: relative;
    bottom: 0px;
    width: 100%;
    flex: 0 1 auto;
}

.fadeOut{
    position: absolute;
    top : -10vh;
    height: var(--mFadHeight);
    width: 100%;
    background:content-box linear-gradient(#ffffff00, var(--bgColor));
}

.titleContainer{
    flex : 0 1 auto;
    padding-bottom: 1rem; 
    margin-bottom: 1rem ;
    border-bottom: solid var(--filetSize) var(--bleu);
}

ol, ul {
	list-style: none;
}

h1, h2, h3, h4, h5, h6{
    font-style: normal;
}

h1{
    font-size: 3rem;
}
.orangeTxt{
    color: var(--orange);
}
.blancTxt{
    color: var(--blanc);
}
.roseTxt{
    color: var(--rose);
}

#isMenu{
    appearance: none;
    position: fixed;
}

.menuIconMob{
    display: none;
}

.otherpages{
    margin-bottom: 1.5rem;
}

.otherpages h3{
    font-size: 2rem;
}

a{
    text-decoration: none;
    color: unset;
    cursor: pointer;
}

.updateSite{
    font-size: 0.7rem;
}

.updateSite span{
    font-family: Millimetre;
    font-weight: 800;
}

h3 input[type="checkbox"]{
    display: none;
}

.contactGetOut{
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    width: 100vw;
    height: 100vh;
}

.popUpTut{
    display: block;
    background-color: var(--orange);
    position: fixed;
    bottom: 3vw;
    right: 3vw;
    z-index: 2000;
    border-radius: 1rem;
}

.columnFlex{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.noContact{
    display: none;
}

.contactGetOut input[type='button'], .popUpTut input[type='button']{
    display: none;
}

.contactPopUp{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--orange);
    width: 30vw;
    height: 30vw;
    border-radius:5%;
}

.contactGetOut label, .popUpTut label{
    position: absolute;
    top:5%;
    right: 5%;
    cursor: pointer;
}

.instaC{
    font-size: 150%;
    display: flex;
    align-items: center;
    text-align: center;
}

.iconContact{
    width : 2em;
}

h3{
    cursor: pointer;
}

.debutPopUp{
    position: fixed;
}

.recette{
    display: flex;
    align-items: center;
}

.tuto{
    text-align: center;
    font-family: Millimetre;
}

.tuto{
    padding:  1vh 0 0.5vh 0;
}

.fstTut{
    padding-top: 3vh;
}

.iconScr{
    width: 50%;
}

.conclu{
    padding: 2vh;
}

.iconRec{
    width : 50px
}

@media (orientation:portrait){
    header{
        position : fixed;
        width: 100vw;
        height: auto;
        padding:0;
        margin:0;
        overflow: hidden;
        flex-basis: max-content;
        transition : all 0.5s ease-in-out
    }

    .fHeight{
        height: 100vh;
    }

    .popUpTut{
        display: none;
    }

    .titleContainer{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 94vw;
        margin: 0;
        padding : 3vw 2vh;
        border-right: none;
    }

    .subTitleBox{
        margin-left: 5vw;
    }

    .menuContainer{
        box-sizing: border-box;
        padding : 2vh 5vw;
        max-height: 100%;
        width: 100%;
        background-color: var(--bgColor);
        transition: all 0.5s ease-in-out;
        flex : 2;
    }

    .mobileRanger{
        max-height: 0;
        padding: 0 5vw;
    }

    .titleBox{
        display: flex;
    }

    h1{
        font-size:2rem;
    }

    h2{
        font-size: 0.8rem;
    }

    .menuIconMob{
        display: inline;
    }

    .listProj{
        width: 100%;
        
    }

    li{
        text-align: center;
    }
    .mbMenuIcon{
        transition: all 0.3s ease-in-out;
        transform: rotate(180deg);
    }
    .mbMenuIcon180{
        transform: rotate(0deg);
    }

    .contactPopUp{
        width: 90vw;
        height : 90vw;
        border-radius:1rem;
    }

    .instaC{
        font-size: 1rem;
    }
}