/* Rotation et zoom
https://www.web-eau.net/blog/15-effets-css3-pour-vos-images
*/

.animeaccueil1 img {
	width: 400px;
	-webkit-transform: rotate(10deg) scale(1);
	transform: rotate(10deg) scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.animeaccueil2 img {
	width: 400px;
	-webkit-transform: rotate(-10deg) scale(1);
	transform: rotate(-10deg) scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}


.animeaccueil img:hover {
	width: 400px;
	-webkit-transform: rotate(0) scale(1);
	transform: rotate(0) scale(1.25);
}
