body {
	background-color: black;
	color: #bbb;
	text-align: center;
	font-family: sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	margin: 0;
}

div.content {
	flex: 1;
}

a {
	color: #fff;
}

div.nav {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding-top: 1em;
	padding-bottom: 1em;
	background-color: #111;
	border-bottom: 1px solid #444;
}

div.nav > ul {
	list-style-type: none;
}

div.nav > ul > li {
	display: inline;
	vertical-align: middle;
}

div.nav > ul.pages {
	font-size: larger;
}

div.nav > ul.socials {
	font-size: large;
}

div.nav > ul.pages > li {
	margin-right: 2em;
}

div.nav > ul.socials > li {
	padding-left: 2em;
}

div.nav > ul > li > a {
	text-decoration: none;
}

div.nav > ul > li > a:hover {
	text-decoration: underline;
}

div.nav > ul > li > a.icon:hover {
	text-decoration: none;
}

div.content > table {
	margin: auto;
	border-collapse: collapse;
}

div.content > table tr td {
	padding-top: 1em;
	padding-bottom: 1em;
	padding-left: 1em;
	padding-right: 1em;
	border-bottom: 1px solid #444;
	font-size: larger;
	text-align: left;
}

div.content > table tr td:first-child {
	padding-left: 0;
}

div.content > table tr td:last-child {
	padding-right: 0;
}

div.content > table tr:last-child td {
	border-bottom: 0;
}

div.content > h2,
div.content > img,
div.content > div {
	margin-top: 3em;
}

div.content > table,
div.content > img,
div.content > div {
	width: 50%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

div.content > div > p {
	text-align: left;
}

div.mailer {
	display: flex;
	text-align: center;
	margin: 3em auto 0 auto;
	justify-content: space-around;
	align-items: center;
}

div.footer {
	background-color: #111;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-top: 3em;
	padding-top: 2em;
	padding-bottom: 2em;
	border-top: 1px solid #444;
}