html, body {
	height: 100%;
}

body {
	font: 1.1rem Inconsolata, 'DejaVu Sans Mono', Consolas, Menlo, monospace;
	background: #000;
	margin: 0;
	color: #fff;
	line-height: 1.5;
	padding-top: 0.05px;
}

button, input {
	color: inherit;
	font: inherit;
}
button:hover {
	cursor: pointer;
}

#art, #measurer {
	font-size: 16px;
	position: fixed;
	font-family: inherit;
	margin: 0;
}
#art {
	z-index: -1;
	color: #444;
	pointer-events: none;
	-webkit-user-select: none;
	user-select: none;
}
#measurer {
	visibility: hidden;
}

#content {
	position: relative;
	box-sizing: border-box;
	max-width: 900px;
	padding: 0 40px 100px 160px;
	margin: 100px auto 0 auto;
}

#content {
	background: #0002;
}

@media (min-width: 700px) {
	#avatar {
		width: 120px;
		position: absolute;
		left: 20px;
		top: 20px;
	}
}
@media (max-width: 700px) {
	#content {
		padding-left: 40px;
	}
}

#columns {
	column-width: 16rem;
	column-gap: 4rem;
	margin-bottom: 4rem;
}
#columns > section {
	padding: 0.05px 0;
	break-inside: avoid;
}

h1, h2 {
	font-weight: 300;
	font-stretch: condensed;
	margin: 0.5em 0;
}
h1 {
	font-size: 2.75em;
}
h2 {
	font-size: 1.75em;
}

hgroup > :not(p) {
	margin-bottom: 0;
}
hgroup > p {
	margin-top: 0;
	font-size: 1.5em;
	font-weight: 300;
	font-stretch: condensed;
}

img {
	max-width: 100%;
}

small {
	color: #ddd;
}

code {
	font-family: inherit;
}

.icon {
	height: 1.25em;
	vertical-align: middle;
}

a {
	color: #f7b;
	text-decoration: none;
}
a:visited {
	color: #d9b
}
a:hover {
	text-decoration: underline;
}

dt { font-weight: bold }
dd {
	margin-left: 1.5rem;
	margin-left: 2ch;
	margin-bottom: 0.5rem;
}

button, summary, #others > li > a {
	padding: 0.2em 0.4em;
	background: #510027;
}
button, details, #others > li > a {
	border: 1px solid #a80051;
}
summary {
	border-bottom: 1px solid #444;
}
button:hover, summary:hover, #others > li > a:hover {
	background: #38001b;
}
#cut-it-out {
	z-index: 2;
	position: fixed;
	top: 0;
	left: 0;
}

details { margin: 0.5em 0; }
summary {
	position: relative;
	list-style: none;
	padding-left: calc(1.5rem + 0.4em);
	padding-left: calc(2ch + 0.4em);
	cursor: pointer;
}
summary::before {
	content: '\0025B8 ';
	position: absolute;
	top: 0.2em;
	left: 0.4em;
}
details[open] > summary::before { content: '\0025BE ' }

details > .content {
	padding: 6px;
}
