/*
    Créé le : 11.01.2024
    Créateur : Alexis Girard
    Définition de la page : Page de style de la galerie
*/
.contenu{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.image{
    text-align: center;
    width: 25%;
    margin: 15px;
}

img {
    width: 100%;
}
@media screen and (max-width: 900px) {
    .contenu{
        flex-direction: column;
    }
    .image{
        align-self: center;
        width: 75%;
    }


}