Accueil

Modifié par Admin le 2026/05/11 09:15

.bouton-guide-multicolore {
  display: inline-block;
  padding: 40px 80px;
  font-size: 36px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
  background-size: 300% 300%;
  border-radius: 60px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  transition: all 3s ease;
  animation: gradient-shift 30s ease infinite;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: Arial, sans-serif;
}

.bouton-guide-multicolore:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  color: white;
}

.bouton-guide-multicolore:active {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.bouton-container {
  text-align: center;
  padding: 100px 20px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}