.button-container {
  display: flex;
  gap: 20px; /* Spazio tra i bottoni */
  justify-content: center; /* Centra orizzontalmente */
  margin-top: 50px;
}

.my-button {
  padding: 12px 24px;
  background-color: #8B4513;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
}

.my-button:hover {
  background-color: #654321;
  color: white;
}

.my-button:link,
.my-button:visited,
.my-button:hover,
.my-button:active {
  text-decoration: none;
}
