@font-face {
  font-family: 'HelpMe';
  src: url('../fonts/HelpMe.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'HelpMe', sans-serif;
  background: #111;
  color: white;
  margin: 0;
  padding: 0;
}

nav {
  background: #222;
  padding: 1em;
  text-align: center;
}

nav a {
  color: #ccc;
  margin: 0 1em;
  text-decoration: none;
}

h1 {
  text-align: center;
  margin: 1em 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1em;
  padding: 1em;
}

.square {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.square:hover {
  transform: scale(1.05);
}

audio {
  display: none;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1em; /* espace entre les éléments, ajuste si besoin */
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.gallery a {
  display: block;
}

#bottom-text {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 1em;
  background: transparent;
  font-size: 1.2em;
  z-index: 100;
}
