/*Css projet helloworld*/
body{
    background-color: rgb(215, 150, 126);
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}

.flex{
    margin-top: 10%;
    margin-left: 15%;
    display: flex;
    flex-direction: column;
}


.title{
    font-family: "Zen Dots", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: left;
    font-size: 107px;
    margin-bottom: 150px;
    margin-left: 1%;
}


.sub_title{
    text-align: left;
    margin-left: 10%;
    font-size: 55px;
    margin-bottom: 35px;
    font-weight: 550;
}

.paragraphe{
    margin-left: 15%;
    margin-bottom: 22px;
    max-width: 55ch;
    font-size: 20px;
    line-height: 175%;   
}


a:-webkit-any-link{
    color: rgb(255, 255, 255);
}

footer{
    text-align: center;
    margin-bottom: 0;
    margin-top: 75px;
    background-color: rgb(215, 110, 72);
    padding: 5%;
}

@media (max-width: 500px) {
    .paragraphe{
        font-size: 16px;
        margin-left: 5%;

    }

    .sub_title{
        font-size: 39px;
        margin-left: 3%;
    }

    .title{
        font-size: 76px;
    }
}

