/* style de titre */
.titleMain {
    font-weight: bold;
    font-style: italic;
    font-size: 35px;
    color: white;
    text-shadow: 20px 20px 20px #000;
    -webkit-text-stroke: 2px #000;
    text-align: center;
}

/* style du titre de l'alimentation */
.Title {
    color: #fff;
    -webkit-text-stroke: 1px #000;
    text-align: center;
    font-size: 40px;
}

/* class articel 1 */
.articel1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* class articel 2 */
.articel2 {
    display: flex;
    justify-content: center;
    align-items: center;

}

/* class de recettes */
.TextBox {
    background-color: #fff;
    width: 500px;
    border: 2px solid #000;
    padding: 50px;
    margin: 20px;
    border-radius: 3px;
    display: flex;

}

/* style de nourriture images */
.images {
    display: flex;
    align-items: center;
    max-width: 100%;
    height: auto;
}

/* media all */
@media screen and (max-width: 1100px) {
    .titleMain {
        font-weight: normal;
        font-style: normal;
        font-size: 15px;
        text-shadow: none;
        -webkit-text-stroke: none;
    }

    .articel1 {
        display: contents;

    }

    .articel2 {
        display: contents;

    }

    .Title {
        font-size: 30px;
    }

    .TextBox {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        height: auto;

    }

    .images {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        height: auto;
    }
    .titleMain {
        font-weight: bold;
        font-style: italic;
        font-size: 15px;
        color: white;
        text-shadow: 0;
        -webkit-text-stroke:0;
        text-align: center;
    }

}