body {
overflow: hidden;
position: absolute;
padding: 0px;
margin: 0px;
border: 0px;
}

/*
 * https://www.w3schools.com/cssref/css3_pr_animation.asp
 * animation: (or -ms-animation:, etc) name duration timing-function delay iteration-count direction fill-mode play-state;
 */

.image img {
animation: zoomy 7s ease 0s 1 reverse forwards running;
-ms-animation:zoomy 7s ease 0s 1 reverse forwards running;		/* IE 9 */
-webkit-animation:zoomy 7s ease 0s 1 reverse forwards running;		/* Safari and Chrome */
-0-animation:zoomy 7s ease 0s 1 reverse forwards running;		/* Opera */
-moz-animation:zoomy 7s ease 0s 1 reverse forwards running;		/* Firefox */
padding: 0px;
margin: 0px;
border: 0px;
}



@keyframes zoomy
{
	from
	{
		transform: scale(1.0);
		-ms-transform: scale(1.0);				/* IE 9 */
		-webkit-transform: scale(1.0);				/* Safari and Chrome */
		-o-transform: scale(1.0);				/* Opera */
		-moz-transform: scale(1.0);				/* Firefox */
		padding: 0px;
		margin: 0px;
		border: 0px;
    	}
    	
	to
	{
		transform: scale(2.0);
		-ms-transform: scale(2.0);				/* IE 9 */
		-webkit-transform: scale(3.0);				/* Safari and Chrome */
		-o-transform: scale(3.0);				/* Opera */
		-moz-transform: scale(3.0);				/* Firefox */
		padding-left:235px;
		margin-top:0px;
		
	}
}