@font-face {
  font-family: Font1;
  src: url(Sentinel-Medium.otf);
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f4f4f4;
  text-align: center;
}

h1 {
  margin-top: 2%;
  margin-bottom: 3%;
  font-size: 20pt;
  font-family: Font1;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  width: 90%;
  max-width: 80%;
}

.gallery img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.1);
}

.img-text {
  margin-top: 5px;
  font-size: 14px;
  text-align: center;
  color: #333;
}

/* Style pour la modale */
.modal-overlay {
  display: flex;
  /* Masquée par défaut */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Fond gris transparent */
  z-index: 1000;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0;
}

.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  /* Bords légèrement arrondis */
  text-align: center;
  max-width: 500px;
  width: 80%;
  font-family: Font1;
  word-wrap: break-word;
}