/*
   CSS spécifique pour la partie « Communauté »
*/

/* Fondu pour l'apparition des tuiles */
.alb_sh {animation: apparition 1s ease;}
@keyframes apparition {
  from {opacity: 0;}
  to {opacity: 1;}
}


/* Icône son - Foule */
.son-icone {fill: currentColor; animation: foule 0.6s infinite ease-in-out;}
@keyframes foule {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-3px); }
  100% { transform: translateY(0); }