@-ms-viewport { width:device-width; }
@media only screen and (min-device-width:800px) { html { overflow:hidden; } }
html { height:100%; }
body { height:100%; overflow:hidden; font-family:Arial, Helvetica, sans-serif; font-size:16px; color:#FFFFFF; background-color:#000; }
* { margin:0; padding:0; }
#container {
	position: absolute;
    width: 100%;
    height: 100%;
    background-color: #333;
    /*background-image: url(../images/background_0.jpg);*/
    background-size: cover;
    background-position: center;
    animation: containerAni 0.2s ease-in;
}

@keyframes containerAni {
	0% {
		opacity: 0.5;
		transform:scale(0.8);
	}
	100% {
		opacity: 1;
		transform:scale(1);
	}
}
