body {
	margin: 0;
}

#loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	font-size: 80px;
	text-shadow: 0px 0px 20px black;
}

.clear:after {
    content: "";
    display: table;
    clear: both;
}

.center-y {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.center-x {
	position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.center-xy {
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

a {
	color: inherit;
}

p:first-child {
	margin-top: 0;
}