/*
    Créé le : 11.01.2024
    Créateur : Alexis Girard
    Définition de la page : Page de style de la page index
*/
.contenu{
    display: flex;
    flex-direction: column;
}
img, article {
    width: 30%;
    align-self: center;
}
h2{
    text-align: center;
}
@media screen and (max-width: 900px) {
    article{
        width: 100%;
    }
    img{
        width: 50%;
    }
}
