@charset "utf-8";
/* CSS Document */

* {
	padding: 0px; margin: 0px;
	}
img {
	border: none;
	}	

body{
	background: rgba(70,70,70,.7) ;
	
	padding: 0 100px;
	
	
}
div {
	margin: auto;
	width: 750px;
	height: 790px;
}
@keyframes flash {
    0% {transform: scale(.1);} 
	10% {transform: scale(.2);}
	20% {transform: scale(.3);}
	30% {transform: scale(.4);}
	40% {transform: scale(.45);}
    50% {transform: scale(.5);}
	60% {transform: scale(.6);}
	70% {transform: scale(.7);}
	80% {transform: scale(.8);}
	90% {transform: scale(.9);}
    100% {transform: scale(1);}
}
.flash {
    -webkit-animation-name: flash;
    -moz-animation-name: flash;
    -o-animation-name: flash;
    animation-name: flash;
    /* Задержка перед началом */
   /* -webkit-animation-delay: .5s;
    -moz-animation-delay: .5s;
    -o-animation-delay: .5s;
    animation-delay: .5s;*/
    /* Продолжительность анимации */
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
   }