header {
	display: flex;
	flex-direction: row;
	align-items: center;
}

@media only screen and (max-width: 600px) {
	header {
		flex-direction: column
	}
}

body {
	font-family: "Ac437 ACM VGA 8x16", "Sins Gold", "Video Terminal Screen", "Cascadia Mono", "CaskaydiaCove Nerd Font", Consolas, Courier, monospace;
	background-color: midnightblue;
	color: whitesmoke;
	max-width: 800px;
	margin: 0 auto;
	padding: 6pt;
}

a {
	color: orchid;
}

figure > figcaption > a::before,
p > a::before {
	content: "[";
}

figure > figcaption > a::after,
p > a::after {
	content: "]";
}

footer {
	display: flex;
	flex-direction: row;
	font-style: italic;
	width: 100%;
}

footer img {
	max-width: 320px;
	max-height: 240px;
}