/* Réinitialisation CSS — https://ateliers.esad-pyrenees.fr/web/pages/ressources/css/reset/ */
*, *::before, *::after { box-sizing: border-box; } body { line-height: 1.45; -webkit-font-smoothing: antialiased; } img, picture, video, canvas, svg { display: block; height: auto; max-width: 100%; } input, button, textarea, select { font: inherit; margin: 0; } iframe { border: 0; }

<head>
  <style>
    body {
      background-color: #000000; /* Fondo negro */
      font-family: Arial, sans-serif; /* Fuente Arial */
      color: #ffffff; /* Texto blanco */
    }
  </style>
</head>
figure { margin: 0; }
figcaption { text-align: center; margin: .5em 0;}



/* --------------------------------------------------- grille 3 */
.grid3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 20px;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.grid3 figure {
  width: 100%;
  aspect-ratio: 1/1;
}
.grid3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
