/* General styling. */

body {
	background-color: white;
	margin: 0;
}

body div {
	color: gold;
	font-family: 'Courier New', Courier, monospace;
}

#heading {
	display: flex;
	justify-content: center;
	background-color: rgb(50, 50, 50);
	color: gold;
	width: 100%;
	margin: 0;
	font-family: copperplate;
}

#heading:hover {
	cursor: pointer;
}

#heading h1 {
	text-align: center;
	text-transform: uppercase;
	font-size: 40px;
	padding: 0 40px;
}

.page-body-container {
	display: flex;
	flex-direction: column;
}

.page-body {
	flex: 1;
	padding: 0 40px;
	display: flex;
	justify-content: center;
	min-height: 500px;
	width: 90%;
}

/* Footer container styling. */

#footerbox {
	display: none;
	position: absolute;
	bottom: 10px;
	margin-left: auto;
	margin-right: auto;
}