body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #121212;
  color: white;
}

h1 {
  margin-top: 40px;
}

.menu {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* permet aux boutons de passer à la ligne sur petits écrans */
  gap: 20px;       /* espace entre les boutons */
}

/* Boutons */
button {
  display: flex;
  flex-direction: column; /* image au-dessus du texte */
  align-items: center;
  justify-content: center;
  background-color: #3498db;
  color: white;
  border: none;
  padding: 15px 30px;
  margin: 10px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #1abc9c;
  transform: scale(1.05);
}

/* Images dans les boutons */
.button-img {
  width: 80px;       /* ajuste selon ton image */
  height: auto;
  margin-bottom: 10px; /* espace entre image et texte */
}

/* Responsive : boutons sur petit écran et texte plus petit */
@media screen and (max-width: 480px) {
  button {
    padding: 10px 20px;
    font-size: 16px;
  }

  .button-img {
    width: 60px;
    margin-bottom: 5px;
  }
}
/* Lien de bas de page */
.footer-link {
  background: none;
  color: #aaa;
  text-decoration: underline;
  font-size: 14px;
  margin-top: 80px;
  cursor: pointer;
  display: block;
  border: none;
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.footer-link:hover {
  color: #fff;
}
.footer-link1 {
  background: none;
  color: #aaa;
  text-decoration: underline;
  font-size: 14px;
  margin-top: 80px;
  cursor: pointer;
  display: block;
  border: none;
  position: fixed;
  bottom: 10px;
  left: 10px; /* place le bouton à gauche de l’écran */
  transform: none; /* supprime le centrage horizontal */
}

.footer-link1:hover {
  color: #fff;
}

.form-button {
  background: none;
  color: #aaa;
  text-decoration: underline;
  font-size: 14px;
  margin-top: 80px;
  cursor: pointer;
  display: block;
  border: none;
  position: fixed;
  bottom: 10px;
  right: 10px; /* place le bouton à droite de l’écran */
  transform: none; /* supprime le centrage horizontal */
}

.form-button:hover {
  color: #fff;
}

