html {
	height: 100%;
	overflow: hidden;
}

#blocker {
	position: absolute;
	cursor: default;
	z-index: 9;
	width: 99%;
	height: 99%;
    background-color: rgba(0, 0, 0, 0);
}

#game { 
	background-color: #FECA19;
	position: absolute;
	width: 100%;
	height: 100%;
}

#loading {
	z-index: 100;
    position: fixed;
    top:-100%; right:-100%; left:-100%; bottom:-100%;
    margin:auto;
    z-index:0;
	height: 10%;
	-webkit-animation: rotation 1s infinite linear;
}

@-webkit-keyframes rotation {
	100% {
        transform: rotate(30deg);
    }
}