.galleryBijouxDePeau {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.galleryBijouxDePeau img {
  max-height: 300px;
  width: auto;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 6px 5px 1px 0px rgba(83, 10, 96, 0.75);
  border: #000000 2px solid;
}

.galleryBijouxDePeau > img:hover {
  box-shadow: 0 0 20px #f34538;
}

.PresentationBijouxdePeau {
  background: linear-gradient(to right, #0d6e61 0%, #e416f7 100%);
  background-clip: text; /* Version standard */
  -webkit-background-clip: text; /* Version webkit */
  -webkit-text-fill-color: transparent;
  color: transparent; /* Fallback */
}


.galleryBijouxDePeau img {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.galleryBijouxDePeau img.animate-in {
  opacity: 1;
  transform: scale(1);
}