body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

header {
	position: sticky;
	top: 0;
    background: blue;
	padding: 8px;

	display: flex;
	flex-direction: row;
}
header > ul {
	display: flex;
	flex-direction: row;
	flex: 2;

	text-align: center;
	align-items: center;

	list-style-type: none;
}
header > ul > li {
	flex: 1;
	font-size: 1.5em;
}

header h1 {
	flex: 1;
}
header h1:hover {
	background: linear-gradient(to right, red, yellow);
	background-clip: text;
	color: transparent;
}
header a {
	color: white;
}

footer {
	background: grey;
    padding: 8px;
	display: flex;
	flex-direction: row;
}

footer > div {
	min-width: fit-content;
	flex: 1;
	align-content: center;
}

#links img {
	padding: 0 0.3em;
}

#links a {
	color: transparent;
}

#copyright img {
	vertical-align: middle;
}

main {
	margin: 8px;
	flex: 1;
}

ul#recentPosts ul {
	padding-left: 0;
}

li.hiddenMarker::marker {
	content: "";
}