html, body {
	height: 100%;
	width: 100%;
	background-color: #050505;
	color: #A0A0A0;
	margin: 0px;
	padding: 0px;
}

article {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

/* Top and bottom panels should look same */
header, footer {
	flex-shrink: 0;
	background-color: #101010;
	color: white;
	text-align: center;
}

/* Other elements should have few pixels around them */
main {
	flex-grow: 1;
	margin-left: 5%;
	margin-right: 5%;
}
