@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*/
    font-size:1.3vw;
}

section{
    text-align: left;
    margin-top:2vw;
    margin-left: 20vw;
    margin-right: 3vw;
}

/*couleur du bandeau*/
header {
    background-color: darkturquoise;
}

.img_header{
    width: 100vw;
    height: 50vw;
}

.head{
    position:relative;
    text-align: center;
}

.chemins{
    display:flex;
}

.inverse{
    transform:scaleX(-1);
}

.slog1{
    top: 15vw;
    left: 10vw;
    position:absolute;
    color:white;
    font-size:2.5vw;
}
.slog2 {
    bottom: 15vw;
    right: 10vw;
    position: absolute;
    color: white;
    font-size: 2.5vw;
}

.blue {
    background-color: darkturquoise;
    border-radius: 2vw;
    padding: 1vw 1vw 1vw 1vw;
    margin-left: 5vw;
    margin-right: 5vw;
}

.sophrotop{
    display:flex;
    align-items: center;
}

.feriel{
    width:11vw;
    border-radius: 2vw;
}

.concepts{
    display:flex;
    margin-left: 3vw;
    margin-top:1vw;
    margin-bottom:2vw;
}

h2{
    font-size: 3.5vw;
}

body div a {
    width: 21vw;
    font-size: 3.5vw;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: darkturquoise;
    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;
}

.fa{
    margin-right: 1vw;
}

footer {
    background-color: darkturquoise;
}


@media only screen and (max-device-width: 480px) {
    body{
        font-size:3vw;
    }

    .concepts{
        display:block;
    }

    section {
        margin-top: 2vw;
        margin-left: 1.5vw;
        margin-right: 1.5vw;
    }

    .sophrotop p{
        font-size:4.7vw;
    }

    .feriel{
        width:16vw;
    }

    .parallax {
        visibility: hidden;
    }

    .nav:target .nav__menu, .nav--open .nav__menu {
        background-color: darkturquoise;
    }
    
}