@import url('https://fonts.googleapis.com/css?family=Didact+Gothic');

:root {
	--theme-color1: black;
}

html { height: 100%; }

body {
	font-family: 'Didact Gothic', Arial, Helvetica, sans-serif;
	min-height: 100%;
	padding-bottom: 40px;
	position: relative;
}

header, footer {
	background-color: var(--theme-color1);
	padding: 1em 3vw;
	color: white;
}

header {
	position: sticky;
	top: 0;
	z-index: 7;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
}

#title {
	font-size: 30px;
	text-decoration: none;
}

nav { margin: 0 auto; }

nav ul > li { display: inline-block; }

nav ul > li + li::before {
	content: ' | ';
	margin-left: 0.5em;
}

#main {
	padding: 1.5em 3vw;
	display: table;
	table-layout: fixed;
	width: 100%;
}

.page, .sidebar {
	display: table-cell;
	vertical-align: top;
}

.sidebar {
	font-size: .9em;
	line-height: 1em;
	width: 300px;
	padding-right: 1em;
}

footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: right;
}

.socialmedia { float: left; }

@media (max-width: 767px) {
	.page { display: table-header-group; }

	.sidebar {
		width: 100%;
		padding-top: 2em;
	}
}
