@font-face {
  font-family: 'Hestina Font';
  src: url('Hestina Font.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Bohemian Typewriter';
  src: url('Bohemian Typewriter.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.gallery-pyramid {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.gallery-pyramid .row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.gallery-pyramid .row img {
  max-width: 100%;
  width: 200px; /* ou ajuste selon le rendu */
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-in-out;
  cursor: pointer;
}

.gallery-pyramid .row img:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.gallery-pyramid figcaption {
  display: none;
}