body {
  background: #000;
  color: rgb(189, 90, 141);
  margin: 0;
  padding: 0;
  font-family: 'Bagnard', serif;
  line-height: 1.6;
  font-size: 1.1em;
}
a {
  color: currentColor;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: all 0.2s ease;
}
a:hover {
  opacity: 0.8;
  border-bottom: 1px dashed currentColor;
}

img {
  display: block;
  max-width: 100%;
  /* filter: sepia(1) contrast(1.2) invert(1) hue-rotate(-150deg) saturate(4); */
}
#fond{
  max-width: 65%;
  margin-left: 10em;
}
.gallery {
  display: flex;
  flex-wrap: wrap;           /* permet le retour à la ligne */
  gap: 1em;                  /* espace entre les images */
  justify-content: center;  
}

.gallery figure {
  width: 300px;             
  height: auto;
  margin: 0;
  border-radius: 0.5em;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(100%) contrast(1.2);
  overflow: hidden;
}

.gallery figure:hover {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.4);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.texte {
  max-width: 40em;
  margin: 4em auto;
  font-size: 1.05em;
  opacity: 0.9;
}
h1{
  text-align: center;
  font-size: 4.5em;
}
h2{
  text-align: center;
}

