
/* Loading Screen */
#loading-screen
{
	position: absolute;
	width: 100vw;
	height: 100vh;
	top: 0px;
	left: 0px;

	background-color: rgb(38, 38, 38);
	
	display: flex;
	justify-content: center;
	align-items: center;
}
#progress-bar-empty
{
	width: 300px;
	height: 20px;
	
	background-color: rgb(38, 38, 38);
	border: solid white 5px;
}
#progress-bar-full
{
	width: 0%;
	height: 100%;
	background-color: white;
}
