@font-face {
	font-family: "Asap Condensed";
	src: url("fonts/asapcondensed-medium.woff2") format("woff2");
}

@font-face {
	font-family: "Asap";
	src: url("fonts/asap-regular.woff2") format("woff2");
}

@font-face {
    font-family: "Asap"; font-style: italic;
    src: url("fonts/asap-italic.woff2") format("woff2");
}

@font-face {
    font-family: "Asap"; font-weight: bold;
    src: url("fonts/asap-semibold.woff2") format("woff2");
}

@font-face {
    font-family: "Asap"; font-weight: bold; font-style: italic;
    src: url("fonts/asap-semibolditalic.woff2") format("woff2");
}

@font-face {
	font-family: "DejaVu Sans Mono";
	src: url("fonts/dejavusansmono.woff") format("woff");
}

@font-face {
	font-family: "DejaVu Sans Mono"; font-weight: bold;
	src: url("fonts/dejavusansmono-bold.woff") format("woff");
}

/* Everything else */

body {
	font-family: "Asap", sans-serif;
	margin: 0;
	background: #13171B;
	color: #FFF;
}

header {
	margin: 3rem auto 0;
	max-width: 800px;
	background: #242629;
	border-radius: 7px;
	border-bottom: 2px solid #000;
	padding: 0.1rem 1rem;
}

header h1 {
	margin: 0;
	text-align: right;
	line-height: 1;
	font-size: 48px;
	font-weight: 500;
	font-family: "Asap Condensed"; /* DejaVu Sans Mono */
	text-shadow: 0 3px 0 #000;
	color: #7994BD;
}

header h1 span {
	color: #FFF;
}

section, footer {
	background: #2E3C50;
	background: #1D252F;
	max-width: 750px;
	margin: 0 auto 2rem;
	border-radius: 10px;
	border-bottom: 2px solid #000;
	/* border-left: 4px dashed #6980A0; */
	padding: 1.25rem 0.5rem 1rem 1.5rem;
}

nav {
	margin-bottom: 1.25rem;
}

p.navtree {
	text-align: left;
	margin-top: 0;
}

section:first-of-type {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

footer {
	padding-top: 1rem;
	font-style: italic;
    color: #7994BD;
	margin-bottom: 3rem;
}

h2, h3 {
	color: #7994BD;
}

section h2 {
	margin: 0;
}

section p {
	margin: 1rem 0 0;
}

a {
	color: #9DD5DE;
}

a:hover {
	color: #FFF;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

ul li {
	line-height: 1.25;
	padding-left: 0;
}

ul li:before {
	content: "-";
	padding-right: 0.5rem;
}

blockquote::before, q::before {content: "“";}
blockquote::after, q::after {content: "”";}

pre, code {
	font-family: 'DejaVu Sans Mono', monospace;
	overflow: auto;
}

pre>code {
	margin: 1rem 0;
    padding: 0 1rem;
    border: dotted #FFF;
    border-width: 0 2px;
    display: block;
}

pre>code::before {
	content: "Code: ";
	display: block;
	font-size: 90%;
}

.filelist {
    border-collapse: collapse;
}

.filelist th, .filelist td {
    border: 1px solid #FFF;
    padding: 0.25rem 0.5rem;
}

.filelist th:last-of-type, .filelist td:last-of-type {
    text-align: right;
}

@media all and (max-width: 700px) {
	section, footer, nav {
		border-left: 0;
	}
}