/* Tags */

	/* Main Document */

html, body {
	height: 100%;
}

body {
	background-color: #272727;
	color: #727272;
	margin: 0;
	font-family: "Architects Daughter", cursive;
	font-size: calc((0.1em + 1vmin) + (0.1em + 1vmax));
}

div {
	box-sizing: border-box;
}

/* Classes */

	/* Sections */

.running-section {
	align-items: center;
	background-color: rgba(0, 0, 0, 0.27);
	display: flex;
	justify-content: center;
	margin: auto;
	width: 100%;
}

.header {
	padding: 2.5%;
	position: relative;
	font-size: 1.1em;
	height: 10%;
	min-height: 72px;
}

.footer {
	bottom: 0;
	padding-left: 5%;
	padding-right: 5%;
	position: absolute;
	font-size: smaller;
	height: 10%;
	min-height: 72px;
}

.body {
	margin: auto;
	max-height: 100%;
	width: 72%;
}

	/* Formatting */

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

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.half {
	width: 50%;
}

.third {
	width: 33%;
}

.quarter {
	width: 25%;
}

	/* Absolute Rubbish */

.spin {
	animation: spin 2.7s linear infinite;
	-moz-animation: spin 2.7s linear infinite;
	-webkit-animation: spin 2.7s linear infinite;
}

@keyframes spin {100% {-webkit-transform: rotate(360deg); transform:rotate(360deg);}}
@-moz-keyframes spin {100% {-moz-transform: rotate(360deg);}}
@-webkit-keyframes spin {100% {-webkit-transform: rotate(360deg);}}