body{
    font-family:"roc-grotesk", sans-serif;
    background-image: url(img/BG-Haut.png), url(img/BG-Bas.png);
    background-position: top center, bottom center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
}

img{
    max-width: 100%;
    height: auto;
    display: block;
}

.home-container{
    display: flex;
    flex-direction: column;
    gap: 70px;
    align-items: center;
    padding: 0 30px;
    flex:1;
}

.home-container_content_title{
    font-weight: 500;
    font-size: 50px;
    line-height: 42px;
    color: #0E5641;
    margin-bottom: 24px;
    font-family: "roc-grotesk-condensed", sans-serif;
}

.home-container_content_paragraph{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4A5565;
    margin-bottom: 10px;
}

.home-container_content_links{
    display: flex;
    gap: 16px;
    flex-direction: column;
    margin-top: 32px;
}

.home-container_content_links_link{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #0E5641;
    border: 1px solid #0E5641;
    text-decoration: none;
    border-radius: 12px;
    padding: 11px 16px;
    text-align: center;
}

.home-container_content_links_link--secondary{
    background-color: #09BA65;
    color: #FFFFFF;
    border: 1px solid #09BA65;
}

.footer{
    padding: 22px 30px;
    margin-top: 30px;
}

.footer_text{
    font-size: 12px;
    font-weight: 400;
    color: #333333;
}

.cosmetic-juste{
    position: relative;
}
.cosmetic-juste::after{
    content: '';
    position: absolute;
    left: -21px;
    bottom: -8px;
    width: 142px;
    height: 79px;
    background-image: url(img/juste.png);
    z-index: -1;
    transform: scale(0.8);
    background-repeat: no-repeat;
}

.cosmetic-change{
    position: relative;
}
.cosmetic-change::after{
    content: '';
    position: absolute;
    right: -92px;
    bottom: -5px;
    width: 205px;
    height: 14px;
    background-image: url(img/change.png);
    z-index: -1;
    background-repeat: no-repeat;
    transform: scale(0.8);
}

.home-container_logo{
    margin-top: 80px;
    width: 75%;
}

.home-container_logo img{
    margin: auto;
}

@media (min-width: 460px) {

    .home-container_content_links{
        flex-direction: row;
    }

}

@media (min-width: 1100px) {
    .home-container{
        width: 1100px;
        margin: auto;
        flex-direction: row;
        gap: 64px;
        flex: unset;
    }

    .home-container_content_title{
        font-size: 64px;
        line-height: 63px;
    }

    .home-container_logo{
        margin-top: 0px;
        width: auto;
    }

    .home-container_logo img{
        max-width: none;
        width: 414px;
    }

    .cosmetic-juste::after{
        left: -9px;
        width: 142px;
        height: 79px;
        bottom: 0px;
        transform: scale(1);
    }

    .cosmetic-change::after{
        right: -88px;
        width: 205px;
        height: 14px;
        bottom: -3px;
        transform: scale(1);
    }

    .footer{
        margin-top: 0;
    }
}