.fenetreImages {
margin: 0 auto;
margin-top: 60px;
margin-bottom: 10px;
display: grid;
gap:4px;
width: fit-content;
/*! background-color: tomato; */
}

/* XXXX A5 portrait XXXX */
@media only screen and (max-width : 768px) and (orientation : portrait) {
.fenetreImages {display: inline;text-align: center;}
}

/* XXXX A5 paysage XXXX */
@media only screen and (max-width : 1024px) and (orientation : landscape) {
.fenetreImages {margin-top:30px;}
}

/* XXXX Tablette portrait XXXX */
@media only screen and (min-width : 769px) and (max-width : 834px) and
(orientation : portrait) {
.fenetreImages {margin-top:100px;gap: 8px;}
}

/* XXXX Tablette paysage XXXX */
@media only screen and (min-width : 1025px) and (max-width : 1112px) and
(orientation : landscape) {
.fenetreImages {margin-top:90px;gap: 8px;}
}

