/* class de section */
.items {
    display: grid;
    grid-template-columns: auto auto auto;
    margin: 100px auto;
    justify-content: center;
    align-items: center;
    width: 90%;
    padding: 20px;
}

/* style de nourriture images */
.food img {
    width: 90%;
    padding: 10px;
}

/* style de noms d'aliments */
.foodName {

    font-size: 25px;
    color: white;
    -webkit-text-stroke: 1px #000;
    text-align: center;
}

/* media all */
@media all and (max-width: 1100px) {
    .items {
        justify-content: center;
        display: contents;


    }

    .food {

        width: 50%;
        margin-left: auto;
        margin-right: auto;

    }
}