@-webkit-keyframes infinite-rotation {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

@-moz-keyframes infinite-rotation {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

@-ms-keyframes infinite-rotation {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

@-o-keyframes infinite-rotation {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

@keyframes infinite-rotation {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

body {
	margin: 0;
	padding: 0;
}

.dynamic-background {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0;
	z-index: -100;
}

.dynamic-background .fan {
	-webkit-animation: infinite-rotation 40s linear 0s infinite;
	   -moz-animation: infinite-rotation 40s linear 0s infinite;
	    -ms-animation: infinite-rotation 40s linear 0s infinite;
	     -o-animation: infinite-rotation 40s linear 0s infinite;
	        animation: infinite-rotation 40s linear 0s infinite;
}

#accek {
          -webkit-animation: enter-in 4s ease-out 0s;
              -moz-animation: enter-in 4s ease-out 0s;
                -ms-animation: enter-in 4s ease-out 0s;
                  -o-animation: enter-in 4s ease-out 0s;
                      animation: enter-in 4s ease-out 0s;
                       
                transform: scale(0.8, 0.8);
    }
