@font-face
{
	font-family: 'Montserrat';
	src: url('Montserrat-VariableFont_wght.ttf');
}


*
{
	box-sizing: border-box;
}


body
{
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background-color: #111;
	color: #eee;
	font-family: 'Montserrat', sans-serif;
}


#page
{
	max-width: 120ch;
	margin: 0 auto;
}


header
{
	padding: 1ch 0;
	border-bottom: 1px solid #aaa;
}


header > #tagline
{
	font-style: italic;
	font-size: small;
}


section
{
	border-top: 1px solid #aaa;
	padding: 1ch 0;
}


h1, h2
{
	margin: 0;
}


h1
{
	font-size: 250%;
}


a
{
	font-weight: bold;
	text-decoration: none;
	color: #aaf;
}


a:hover
{
	text-decoration: underline overline dotted;
}


footer
{
	font-style: italic;
	font-size: small;
	padding-top: 1ch;
	border-top: 1px solid #777;
}

