#unity-loading-bar,
#unity-warning {
	position: absolute;
	left: 50%;
	display: none;
}

:root {
	--logo-scale: 1.4;
	--progress-bar-fill-color: rgb(151, 61, 159);
	--progress-bar-empty-color: rgb(255, 192, 42);
	--progress-text-top-space: 12px;
}

body {
	padding: 0;
	margin: 0;
}

#unity-container {
	position: fixed;
	width: 100%;
	height: 100%;
}

#unity-canvas {
	width: 100%;
	height: 100%;
	background: #231f20;
}

#unity-loading-bar {
	top: 50%;
	transform: translate(-50%, -50%);
}

#unity-logo {
	width: calc(154px * var(--logo-scale));
	height: calc(130px * var(--logo-scale));
	background: url("Logo.png") center/contain no-repeat;
}

#unity-progress-bar-empty {
	margin-left: auto;
	margin-right: auto;
	width: 141px;
	height: 18px;
	margin-top: 10px;
	background-color: var(--progress-bar-empty-color);
	border-radius: 999px;
	overflow: hidden;
}

#unity-progress-bar-full {
	width: 0%;
	height: 100%;
	margin-top: 0;
	background-color: var(--progress-bar-fill-color);
	border-radius: 999px;
}

#unity-warning {
	top: 5%;
	transform: translate(-50%);
	background: #fff;
	padding: 10px;
}

#unity-progress-text {
	margin-top: var(--progress-text-top-space);
	text-align: center;
	color: #fff;
	font-size: 14px;
	font-family: monospace;
	white-space: pre-line;
}
