/* class container */
.container {

    display: flex;
    margin: 100px auto;
    justify-content: center;
    width: 90%;


}

/* style du texte et de la zone de texte */
.text {
    border-radius: 10px;
    display: flex;
    color: black;
    background-color: wheat;
    padding: 50px;
    margin: 50px;
    font-size: 23px;
}

/* style de image */
.maysoun{
   padding-bottom: 130px;
}

/* media all */
@media all and (max-width: 1580px) {
    .text {
        font-size: 20px;
    }

    @media all and (max-width: 1380px) {

        .text {
            font-size: 17px;
        }
    }

    @media all and (max-width: 1100px) {
        .container {
            display: contents;
        }
        .maysoun{
            display: none;
        }
    }
}