@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@300&display=swap');

:root{
    --list-padding: 2vw;
    font-family: 'Dosis', sans-serif;
}

/*tout*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html{
    min-height: 100vh;
    overflow-x: hidden;/*pas de scroll gauche droite*/
}

/*couleur du bandeau*/
header {
    background-color: lightgreen;
}


/*img de fond*/
.img_header{
    width: 100vw;
}

.parallax{
    position: relative;
}

.arbreR {
    top: 0;
    width: 100vw;
    pointer-events: none;
    transform: scaleX(-1); /*flip*/
    position: absolute;
}

.arbreL {
    top: 0;
    width: 100vw;
    pointer-events: none;
    position: absolute;
}

/*faux arbre caché pour que le texte reste derriere*/
.arbrefake {
    top: 0;
    height:80px;
    pointer-events: none;
    visibility: hidden;
}

section{
    margin: 0px 7vw 0px 7vw;
}

.flyers{
    text-align: center;
}

h1{
    font-size:7vw;
    padding-bottom:2.5vw;
    text-align: center;
}

.flyer{
    width:40vw;
}

.prems{
    display:flex;
    justify-content:center;
    border-bottom: 0.5vw solid lightgreen;
}

    .liste{
        font-size:3vw;
        text-align:center;
        padding-top:3rem;
    }

    .liste li {
        margin-top:2vw;
    }

    .sophroga{
        width:15vw;
    }

    .imgval{
        width: 40vw;
        border-radius: 2vw;
        margin-left:10px;
    }

.bloctext{
    padding:5vw 5vw 5vw 5vw;
    font-size:2vw;
    text-align:center;
}

    .bloctext ul {
        text-align: left;
        padding-left: 11vw;
    }

.desc{
    text-align:center;
}

.flextamere{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.margrite{
    width:20vw;
}

.imgval2 {
    width: 45vw;
    border-radius: 2vw;
}

.green {
    background-color: lightgreen;
    border-radius: 2vw;
    padding: 1vw 1vw 1vw 1vw;
    margin-left: 5vw;
    margin-right: 5vw;
}

.scroll {
    position: relative;
}

.gif {
    bottom: 10vw;
    right: 38.9vw;
    position: absolute;
    width: 20vw;
}

.fa{
    margin-right: 1vw;
}

body div a {
    width: 21vw;
    font-size: 3.5vw;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: lightgreen;
    text-decoration-thickness: 0.5vw;
    margin-top: 5vw;
}

body > div {
    display: flex;
    flex-direction: column;
}

body div a:hover .arrow {
    transform: translateX(20px);
    
}

.arrow{
    margin-left: 2vw;
    width: 2vw;
    transition: all 0.3s ease-in-out;
    
}

.links{
    align-items: center;
}

footer {
    background-color: lightgreen;
}


@media only screen and (max-device-width: 480px){
    .gif{
        display:none;
    }
    
    /* .parallax{
        visibility:hidden;
    } */

    .nav:target .nav__menu, .nav--open .nav__menu {
        background-color: lightgreen;
    }
}

@media only screen and (min-width: 1200px){
    .liste {
        font-size: 2.2vw;

    }

    .imgval {
        width: 28vw;
    }

    .bloctext{
        font-size:2vw;
    }

    .imgval2{
        width:40vw;
    }

    .desc{
        margin-top:3vw;
        display:flex;
    }

}