


  .bouton-facebook {
    /* Couleurs et apparence */
    background-color: #0866FF; /* Bleu Facebook */
    color: white;
    text-decoration: none; /* Enlève le souligné du lien */
    
    /* Taille et forme */
    padding: 12px 24px;
    display: inline-block;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    
    /* Animation au survol */
    transition: background 0.3s;
  }

  .bouton-facebook:hover {
    background-color: #0055d4;
  }


