body
{
	padding: 0; 
	margin: 0;
	overflow: hidden;
	--angle: 0%;
	
	-webkit-touch-callout:none;
    -webkit-user-select:none;
    -khtml-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}

#unity-canvas 
{ 
	position: absolute; 
	background: #000000; 
	left: 0px; 
	top:0px; 
	width:100vw; 
	height:100vh;
}

#unity-warning 
{ 
	position: absolute; 
	left: 50%; 
	top: 5%; 
	transform: translate(-50%); 
	background: white; 
	padding: 10px; 
	display: none;
}

.Background
{
	position: absolute; 
	width:100vw; 
	height: 100vh; 
	left: 0px; 
	top:0px; 
	background: linear-gradient(15deg, #0087ff, #3e00c6);
}
.Anchored
{
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	max-width: 80%;
	max-height: 40%;
	aspect-ratio: 1;
}

.Image
{
	max-width: 100%;
	max-height: 100%;
	border-radius: 50%;
}

.LoadingBar
{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	bottom: 100%;
	background: conic-gradient(white var(--angle), transparent 0);
	position: sticky;
}
.LoadingText
{
	display: none;
	font-size: 35px;
	top: 51%;
	border: 0;
	text-align: center;
	width: 100%;
	position: absolute;
	font-family: "Franklin Gothic Medium";
	font-weight: bolder;
	color: white;
}

