
.apropos {
    display: grid;
    grid-template-areas: 'texte-apropos image-apropos';
   
    margin-top: 12rem;
}

.msg-apropos {
    font-family: 'Rokkitt', serif;
    font-size: 1.5rem;
    font-weight: 200;
    text-align: right;
    padding-top: 3rem;
    margin: 1rem;

    grid-area: texte-apropos;



}

.msg-apropos h1 {
    color: rgb(158, 158, 158);
    letter-spacing: 0.4rem;
    font-weight: 400;
    margin-bottom: 4rem;
}

.image-apropos {
    margin-left: 6rem;

    grid-area: image-apropos;
}

@media (max-width: 520px) {


    .apropos {
        grid-template-areas: 'image-apropos'
                            'texte-apropos' ;
                            margin-top: 16rem;
    }

    .image-apropos {
        margin-left: auto;
        margin-right: auto;

    }

    .image-apropos img {
        width: 100%;
        max-width: 375px;
    }

    .msg-apropos {
        padding-top: 10rem;
    }
}