/* pulse effect - utilisé entre autre pour la page des 10 ans d'histoire espaceplaisir */
@keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(168, 110, 168, 0.7);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(168, 110, 168, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(168, 110, 168, 0);
    }
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}