* {
	box-sizing: border-box;
}

html,body {
	min-height: 100%;
	margin: 0;
}

ul {
	padding-inline-start: 20px;
}

body.dark {
	background-color: #000;
}

body.light {
	background-color: #fff;
}

div.content {
	font-family: monospace;
	padding: 60px;
	width: 820px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
}

.dark div.content {
	color: #aaa;
	background-color: #000;
	box-shadow: 0 4px 8px 0 rgba(0, 200, 0, 0.8), 0 6px 20px 0 rgba(0, 200, 0, 0.8);
}

.light div.content {
	color: #555;
	background-color: #fff;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.8), 0 6px 20px 0 rgba(0, 0, 0, 0.8);
}

footer {
	right: 0;
	left: 0;
	position: absolute;
	margin-top: 40px;
}

footer .footerContent {
	margin-left: auto;
	margin-right: auto;
	width: 800px;
	white-space: nowrap;
	text-align: center;
}

.dark footer .footerContent {
	background: #000;
}

.light footer .footerContent {
	background: #fff;
}

h3 {
	margin-top: 32px;
}

.dark a {
	color: #69f;
}

.light a {
	color: #960;
}

.logo {
	font-family: monospace;
}

.name {
	font-family: monospace;
}

.dark .name {
	color: #0f0;
}

.light .name {
	color: #0a0;
}

.prompt {
	font-family: monospace;
}

.dark .prompt {
	color: #69f;
}

.light .prompt {
	color: #69a;
}

span.tab {
	display: inline-block;
	width: 5ch;
}

a.anchor {
	text-decoration: underline;
}

.dark a.anchor {
	color: #aaa;
}

.light a.anchor {
	color: #555;
}

.mobile {
	display: none;
}

.desktop {
	display: block;
}

div.menu {
	float: right;
	margin-right: 20px;
}

@media (max-width: 800px) {

	div.content {
		width: 96%;
		font-size: x-large;
		padding: 8px;
	}

	footer {
		left: 0;
		position: inherit;
		bottom: auto;
	}

	footer .footerContent {
		margin-left: auto;
		margin-right: inherit;
		width: auto;
		white-space: wrap;
		text-align: left;
	}

	.mobile {
		display: block;
	}

	.desktop {
		display: none;
	}

}
