html {
	height: 100%;
}

body {
	box-sizing: border-box;
	margin: 0;
	padding: 0.5rem;

	display: grid;
	height: 100%;
	grid-template-areas:	". . ."
				". c ."
				". . ."
				". f .";
	grid-template-rows: 1fr auto 1fr auto;
	grid-template-columns: 1fr auto 1fr;

	font-family: sans-serif;
}

.body {
	grid-area: c;
}

.footer {
	grid-area: f;
}
