#ArrierePlan{
    /* L'arrièreplan du header */
    height: 850px;
    background-image: url("../images/wildlife/eisvogel2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}
div>img{
    /*La taille et paramètres des images des produits*/
    height: auto;
    width: 225px;
    object-fit: cover; 
    border-radius: 3%;
}
p{
    /* Raptisir la grandeur du texte (déscription du produit) */
    font-size: smaller;
}
.Container{
    /*Le flexbox des produits*/
    display: flex;
    justify-content: space-evenly;
}
@media screen and (max-width: 800px){
    .Container{
        /*Le changement du flexbox en colonne*/
        display: flex;
        flex-direction: column;
    }
    #ArrierePlan{
        /*Le changement de l'arrièreplan en portrait */
        height: 1850px;
        background-image: url("../images/wildlife/graureiherhochformat.jpg");
    }
}
