html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
html, body {
  width: 100%;
    height: 100%;
  position:relative;
  	padding: 0px;
	margin: 0px;
}
canvas {
    display: block;
}
body{
	background: #18204F center / cover no-repeat url("./bg.png");
}

.fullscreen {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}
#banner-container {
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 90px;
}
#loading-overlay {
	font-size: 20px;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#icon {
	max-width: 120px;
	border-radius: 10px;
	margin-bottom: 20px;
}
#progress-bar {
	border-radius: 5px;
	width: 90%;
	max-width: 250px;
	height: 15px;
	background: #242424;
	padding: 2px;
}
#progress-bar-fill {
	border-radius: 3px;
	width: 0%;
	height: 100%;
	background: #d786cc;
}
#unity-container {
	width: 100%;
	height: 100%;
  
	position: relative;
	margin: 0 auto;
	min-height: 600px;
	aspect-ratio: auto 9 / 16;
	max-width: 100%;
	width: auto;
}




