*{
	user-select: none;
	cursor: default;
}
html{
	overflow: hidden;
	font-family: Arial;
}
body{
	margin: 0;
	padding: 0;
	background: #000;
}
#game{
	opacity: 0.8;
}
#jumpButton{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	background: #fff;
	opacity: 0.7;
}
#jumpButtonText{
	color: #ccc;
	font-size: 18px;
	font-weight: bold;
}
#scoreContainer{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: 200px;
	height: 130px;
	background: #fff;
	opacity: 0.7;
	gap: 18px;
}
#score{
	margin: 0px 35px;
	color: #aaa;
	font-size: 20px;
	font-weight: bold;
}
#highScore{
	margin: 0px 35px;
	color: #aaa;
	font-size: 20px;
	font-weight: bold;
}
#loader{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#ring{
	display: inline-block;
	width: 80px;
	height: 80px;
}
#ring:after{
	content: " ";
	display: block;
	width: 64px;
	height: 64px;
	margin: 8px;
	border-radius: 50%;
	border: 8px solid #fff;
	border-color: #fff transparent #fff transparent;
	animation: animate-ring 1.2s linear infinite;
}
@keyframes animate-ring{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}