/* These styles are just to make it easier to see the blocks, initially. */

body {
	--spacing: 2em;

	font-family: monospace;
	font-size: 18px;
	padding: var(--spacing);
}

body, header, section, ul, li, footer, address {
	display: grid;
	gap: var(--spacing);
}

main { max-width: 600px }

a { color: blue; }
em { font-style: italic; }
strong { font-weight: bold; }
p { max-width: 50ch; }
