body {
	margin: 0;
	background-color: #000;
	color: #fff;
	font-family: Monospace;
	font-size: 13px;
	line-height: 24px;
	overscroll-behavior: none;
}

a {
	color: #ff0;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

button {
	cursor: pointer;
	text-transform: uppercase;
}

canvas {
	display: block;
}

#unityContainer {
width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    background-color: red;
}


#prog-bg{
	width: 100%;
	height: 100%;
	position: absolute;
	background: black;
	opacity: 1;
	transition: opacity 1s linear;
	background-image:url("progress-bg.jpg");
	background-size: auto 100%;
	background-position-x: center;
	background-position-y: center;
	background-repeat: no-repeat;
}
 
 
#prog-area {
background: gray;
    width: 50vh;
    height: 5px;
    position: absolute;
    margin: auto; 
    left: 0;
    right: 0;
    top: 80vh;
}

#prog-bar {
	transition: width 1s linear;
	height: 100%;
	width:  0%;
	background-color: #bbbbbb;

}