.test { 
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}


.test__image {
    display: flex;
    width: 50%;
    height: 15rem;
    border: none;
    border-radius: 0.5rem;
}

.test__title {
    text-align: center;
    font-size: 1.6rem;
    margin: 1rem 4rem 2rem 4rem;
}

.test__paragraphe {
    text-align: center;
    margin: 0.5rem 4rem 4rem 4rem;
}


@media (width > 40rem) {
    .test {
        display: flex;
        flex-direction: row-reverse;
        
    }

    .test__text{
        display: flex;
        flex-direction: column;
        align-items: left;
        
    }

    .test__image{
        display: flex;
        width: 20rem;
        margin: 7rem;
    }

    .test__title {
       width: 25rem;
       text-align: left;
    }

    .test__paragraphe{
        text-align: left;
        width: 45rem;
    }
}