html{
	font-family: Arial;
	user-select: none;
	overflow: hidden;
}
body{
	margin: 0;
	padding: 0;
	background: #000;
}
#box{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
#game{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	outline: none;
}
#UI{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
#button{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 50%;
	top: 5%;
	width: 80%;
	height: 10%;
	color: #fff;
	border-radius: 100px;
	background: rgba(245, 20, 120, 0.6);
	transform: translate(-50%, 0);
	visibility: hidden;
}
#button:hover{
	background: rgba(245, 20, 120, 0.8);
}
#loader{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(160, 20, 120, 0.8);
}
#loader-text{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 50%;
	top: 50%;
	color: #fff;
	font-size: 150%;
	transform: translate(-50%, -50%);
}