* {
	padding: 0;
	margin: 0;
}

html {
	/* fix mobile viewport menu bar on iOS */
	height: -webkit-fill-available;
	overflow: hidden;
}

body {
	height: 100%;
	width: 100%;
	text-align: center;
	background-color: #a0b3cc;
	overflow: hidden;
}

#unity-container {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#unity-canvas {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: #000000;
}

#unity-loading-container {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 40px;

	opacity: 1;
	visibility: visible;
	transition: 100ms linear;
}

#unity-loading-container.finished {
	opacity: 0;
	visibility: collapse;
}

#unity-loading-container .logo {
	width: 15%;
	height: 15%;
}

#game-logo {
	width: 256px;
	height: 256px;
	object-fit: contain;
	filter: brightness(1.2);
}

#loading-percentage {
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 18px;
	font-weight: bold;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	margin-top: 5px;
}

#unity-loading-bar {
	position: relative;
	width: 40%;
	height: 4px;
	background-color: #333;
	border: 1px solid #666;
	border-radius: 2px;
}

#unity-loading-bar-inner {
	position: absolute;
	left: 0%;
	top: 0%;
	width: 1%;
	height: 100%;
	background-color: #fff;
	border-radius: 2px;
	transition: 400ms linear;
}


