*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    position: relative;
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #564E43;

    min-height: 100vh;
    min-width: 100vw;
}

::selection{
    background-color: #283639;
    color: #DEDBD7;
}

html{
    scroll-behavior: smooth;
    /* font-size: clamp(20px, 5%, 100px); */
    /* font-size: clamp(16px, 4.1vw, 100px); */
    font-size: clamp(16px, 4.1vw, 24px);
    /* font-size: 2vw; */
}

p{
    font-size: 18px;
}

.title{
    font-family: "Satoshi", sans-serif;
}


.container{
    width: 100vw;
    height: 100vh;
    position: relative;
}

.background{
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.background img{
    object-fit: cover;
    width: 100%;
    /* height: 100%; */
    height: 130%;
    position: absolute;
    bottom: 0;
    object-position: bottom;
    transform: scaleX(-1);
}

.content{
    min-width: 100vw;
    min-height: 100vh;
    overflow: scroll;
    position: relative;
    z-index: 2;

    display: flex;
    /* flex-direction: row;
    gap: 100px; */
    /* padding: 100px; */
    padding: 30px;
    flex-direction: column;
}

.title-main{
    /* font-size: 6rem; */
    /* font-size: 3rem; */
    font-size: 2.7rem;
    font-weight: 900;
    color: #DEDBD7;
    line-height: 1;
    max-width: 550px;
}

.title-name{
    color: #8ACBC9;
    /* display: block; */
    /* enlever le display en grand */
}

.vignette{
    background-color: rgba(222, 219, 215, 0.5);
    backdrop-filter: blur(12px);
    border: 2px solid #C1BEBA;
    /* padding: 30px; */
    padding: 20px;
    border-radius: 30px;
    margin-bottom: 30px;
    max-width: 550px;
}

.vignette p{
    font-weight: 600;
}

.title-vignette{
    /* font-size: 3rem; */
    font-size: 2rem;
    font-weight: 900;
    color: #564E43;
    line-height: 1;
    /* margin-bottom: 30px; */
    margin-bottom: 20px;
}

.btn{
    display: inline-block;
    padding: 8px 16px;
    border-radius: 10px;
    background-color: #8ACBC9;
    /* margin-top: 30px; */
    margin-top: 20px;
    text-decoration: none;
    font-family: "Satoshi", sans-serif;
    font-weight: 900;
    color: #283639;
    transition: .4s;
    font-size: 18px;
}

.btn:hover{
    background-color: #283639;
    color: #DEDBD7;
}

.btn:active{
    background-color: #283639;
    color: #DEDBD7;
}

.icone{
    width: 30px;
    height: 30px;
    fill: none;
    stroke: #283639;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icone-inverse{
    stroke: none;
    fill: #283639;
}

.colonne-gauche{
    /* width: 60%; */
    width: 100%;
    /* height: 100vh; */
    height: calc(100vh - 60px);
    /* padding-top: 100px; */
    padding-top: 20px;
    margin-bottom: 60px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.colonne-droite{
    /* width: 40%; */
    width: 100%;
}

.reseaux{
    display: flex;
    flex-direction: row;
    justify-content: center;

    /* display: none; */
}

.reseaux-sociaux{
    background-color: rgba(222, 219, 215, 0.5);
    backdrop-filter: blur(12px);
    border: 2px solid #C1BEBA;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 20px;
    transition: .4s;

    display: flex;
    align-items: center;
    justify-content: center;
}

.reseaux-sociaux:hover{
    background-color: #8ACBC9;
    border-color: #8ACBC9;
}

.reseaux-sociaux:active{
    background-color: #8ACBC9;
    border-color: #8ACBC9;
}


@media(min-width: 1200px){

    html{
        scroll-behavior: smooth;
        font-size: clamp(16px, 4.1vw, 28px);
    }

    .background img{
        height: 100%;
    }
    .content{
        flex-direction: row;
        gap: 100px;
        padding: 100px;
    }

    .title-main{
        /* font-size: 6rem; */
        font-size: 3.3rem;
        max-width: inherit;
    }

    .vignette{
        padding: 30px;
    }

    .title-vignette{
        /* font-size: 3rem; */
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .btn{
        margin-top: 30px;
    }

    .colonne-gauche{
        width: 60%;
        /* height: 100vh; */
        height: calc(100vh - 200px);
        margin-bottom: 0;
        padding-top: 0;
        /* padding-top: 100px; */
    }

    .colonne-droite{
        width: 40%;

        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .reseaux{
        justify-content: flex-start;
    }

}

@media(min-width: 2000px){
    .content{
        min-width: inherit;
        /* min-height: inherit; */
        max-width: 2000px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* .colonne-droite{
    padding-top: 100px;
} */

/* body{
    font-size: ;
} */