html {
  margin:0;
  padding:0;
  background: #9F692C url(images/fond-site.jpg) no-repeat center top;
}

body
{
font-family: 'Dekko', cursive;
margin-bottom: 0px;
}


.zoom {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}


:hover .zoom {
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}



/* Flash */
:hover .flash {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
@-webkit-keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}
@keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}