html{
	user-select: none;
	overflow: hidden;
	font-family: courier;
}
body{
	margin: 0;
	padding: 0;
	background: #000;
}
#loader{
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	transform: translate(-50%, -50%);
}
#loader:after{
	content: " ";
	display: block;
	border-radius: 50%;
	width: 0;
	height: 0;
	margin: 8px;
	box-sizing: border-box;
	border: 32px solid #f542b0;
	border-color: #f542b0 transparent #f542b0 transparent;
	animation: loader-animation 1.2s infinite;
}
@keyframes loader-animation{
	0% {
		transform: rotate(0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	50% {
		transform: rotate(900deg);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	100% {
		transform: rotate(1800deg);
	}
}