*{
    margin: 0;
}

.text-red{
    color: red;
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.text-black{
    color: black;
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.div-1{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.logo{
    width: 80%;
    padding-bottom: 10%;
}

.section-home{
    display: flex;
}

.div-2{
    display: flex;
    justify-content: end;
    align-items: flex-end;
    width: 50%;
}

.image-femme{
    height: 100vh;
}

@media only screen and (max-width:1600px){
    .div-2{
        width: auto;
    }
}

@media screen and (min-device-width: 150px) and (max-device-width:600px){
    .section-home{
        flex-direction: column;
    }
    .div-1{
        height: 80vh;
    }
    .image-femme{
        height: auto;
        width: 50%;
    }
    .div-2{
        justify-content: center;
        margin-top: -30%;
    }
    .logo{
        width: 90%;
        padding: 0;
    }
    .text-black, .text-red{
        font-size: 1.5rem;
    }
}

