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;
  }
}
