html {
	visibility: hidden;
}
body { 
	display: block;
}
.bgimg {
    background-repeat: no-repeat;
    background-size: contain;    
    background-position: center;
    height: 100%;
}

.initspinner {
	margin: auto;
	margin-top: 10px;
	height: 28px;
	width: 28px;
	animation: rotate 0.8s infinite linear;
	border: 8px solid #b5a88a;
	border-right-color: transparent;
	border-radius: 50%;
}

@
keyframes rotate { 0%{
	transform: rotate(0deg);
}
100%{
transform
:rotate(360deg)
;
}
}