/*élément parent en display: flex*/
/*va distribuer les éléments enfants img*/
article {
    display:flex;
    /*on autorise le retour ligne*/
    flex-wrap:wrap;
    /*on justifie le contenu*/
    justify-content: space-between;
}
article img {
    margin-bottom: 1em;
}