/*
Colors:
* bg: #000000
* fg: #eeeeee
* bold white: #ffffff
* ANSI black: #2c2f33
* ANSI red: #ff6666
* ANSI green: #bac55d
* ANSI Yellow: #ebcd61
* ANSI Blue: #8eb7df
* ANSI Magenta: #ceacde
* ANSI Cyan: #83cabf
* ANSI white: #f4f4f4
*/

html {
	box-sizing: border-box;
	font-size: 16px;
}
*, *:before, *:after {
	box-sizing: inherit;
	font-size: inherit;

}

body {
	display: block;
	background: black;
	color: #eeeeee;
	font-weight: normal;
	padding: 1ch;
	font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	line-height: 1.3;
}

.container {
	margin: 0 auto;
	display: block;
	max-width: 80ch;
}
h1:before, h2:before, h3:before, h4:before, h5:before, h6:before {
	content: '> ';
}
h1, h2, h3, h4, h5, h6 {
	color: #ff6666;
	font-weight: bold;
	margin: 1ch 0;
}
h1 {
	color: #bac55d;
}
p {
	margin: 1ch 2ch 1ch;
}
footer p {
	margin: 1ch 0;
}
a {
	color: #8eb7df;
	text-decoration: underline;
	transition: filter 0.2s linear;
}
a:hover {
	filter: brightness(1.2);
}
a:focus:before {
	font-weight: bold;
}
/* em {
	font-family: SFMono-Italic, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
} */
ul {
	padding-left: 0;
	margin-left: 2ch;
	list-style: none;
}
li {
	margin-left: 2ch;
}
li:before {
	content: '* ';
	color: #ebcd61;
}
abbr[title] {
	text-decoration: none;
	border-bottom: 1px dotted;
	position: relative;
}
abbr[title]:after {
	content: " (" attr(title) ")";
	display: none;
}
abbr[title]:hover:after {
	display: inline;
	color: #ceacde;
	font-weight: bold;
}
@keyframes blinkymcgee {
	50% {
		opacity: 0;
	}
}
.blinky:before {
	content: "_";
	animation: blinkymcgee 1s step-start infinite;
	-webkit-animation: blinkymcgee 1s step-start infinite;
	-moz-animation: blinkymcgee 1s step-start infinite;
	cursor: pointer;
}
.blinky.blinky-block:before {
	content: "\2588";
}