@font-face {
	font-family: "Kingthings Trypewriter 2";
	src: url("Kingthings Trypewriter 2.woff");
	font-weight: normal;
    font-style: normal;
}

:root {
	--strip-height: 30px;
	--lightblack: #222;
	--darkwhite: #DDD;
}

header > p, h1 {
	text-align: center;
	margin: 0;
}

h1 { text-transform: capitalize; }

article > header {
	background-color: white;
	max-width: 512px;
	min-width: 256px;
	width: 50%;
	margin: 0 auto 1em auto;
	padding: 1rem;
	font-family: "Kingthings Trypewriter 2", Times New Roman, serif;
	border: 1px solid black;
}

html { height: 100%; }

body {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	margin: 0;
	background-size: cover;
	background-origin: border-box;
	background-position: center;
	background-color: grey;
	background-attachment: fixed;

	min-width: 640px;
}

article {
	display: inline-block;
	padding: 2em 0;
	width: 100%;
	filter: drop-shadow(4px 4px 2px rgba(0,0,0,0.35));
}

article > div {
	display: flex;
	justify-content: center;
}

pre {
	float: left;
	font-size: calc(var(--strip-height) - 12px);
	line-height: var(--strip-height);
	font-family: "Kingthings Trypewriter 2", Times New Roman, serif;

}

pre > span {
	color:  black;
	background:  white;
	padding-bottom: 4px;
	padding-left: 1ch;
	padding-right: 1ch;
	margin-left: -1ch;
	margin-right: -1ch;
	border: 1px solid black;
 }

li {
	background-color: var(--darkwhite);
	color: var(--lightblack);
	padding: 0px 4px 1px 4px;
	border-left: 1px solid black;
}

li:first-child {
	border-top: 1px solid black;	
}

li:last-child {
	border-bottom: 1px solid black;
}

nav, footer {
	width: 100%;
	background-color: var(--darkwhite);
	color: var(--lightblack);
	left: 0;
}

nav {
	top: 0;
	border-bottom: 1px solid black;
}

footer {
	bottom: 0;
	text-align: right;
	border-top: 1px solid black;
}

nav > *, footer > address {
	padding: 0 1em;
}

nav > b { float: right; }

ul {
	list-style-image: url('bullet.png');
	border-right: 1px solid black;
}