@font-face {
	font-family: "Limkin";
	src: url("https://toomuchtype.com/fonts/limkin/variable/TMT-LimkinVF.ttf") format(truetype),
		 url("https://toomuchtype.com/fonts/limkin/variable/TMT-LimkinVF.woff") format(woff),
		 url("https://toomuchtype.com/fonts/limkin/variable/TMT-LimkinVF.woff2") format(woff2);
	font-weight: 100 900;
}
@font-face {
	font-family: 'Geist Mono';
	src: url('/assets/fonts/geist-mono.ttf') format('truetype');
	font-weight: 100 900;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
	--red: #FF734D;
	--blue: #5ADDE8;
	--purple: #A690FC;
	--yellow: #fcc03a;
	--pink: #F3A8DD;
	--green: #98DB6B;
	--off-white: #fafafa;
	--light-gray: #e5e5e5;
	--dark-gray: #444444;
	--off-black: #222222;
}
body {
	text-wrap: pretty;
	font-family: "Geist Mono", monospace;
	font-variation-settings: "wght" 400;
	font-weight: 400;
	background-color: var(--light-gray);
	color: var(--off-black);
}

/* Container */
.container {
	font-size: 14px;
	margin: 0 auto;
	display: flex;
	align-items: safe center;
	justify-content: center;
	min-height: calc(100dvh - 20px);
}
.content {
	padding: 40px 20px 80px 20px;
	width: 100%;
	display: grid;
	gap: 40px;
	grid-template-columns: 350px 1fr;
	max-width: 1000px;
}
.download {
	position: fixed;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	min-width: 240px;
	border: 1px solid var(--off-black);
	background-color: var(--off-white);
	border-radius: 4px;
	color: var(--off-black);
	text-decoration: none;
	padding: 8px 20px 7px 20px;
	font-size: 14px;
	box-shadow: 4px 4px var(--off-black);
	font-variation-settings: "wght" 400;
	font-weight: 400;
	line-height: 1.2em;
	text-align: center;
	z-index: 999;
	animation: download 1s infinite ease-in-out alternate;
}
.download:hover {
	background-color: var(--off-black);
	color: var(--off-white);
}
@keyframes download {
	from {
		transform: translate(-50%, 0px);
	}
	to {
		transform: translate(-50%, -10px);
	}
}
@media (max-width: 700px) {
	.content {
		grid-template-columns: 1fr;
	}
}

/* Tree */
.tree {
	font-family: "Geist Mono", monospace;
	font-size: 14px;
	font-variation-settings: "wght" 400;
	font-weight: 400;
	line-height: 1.2em;
	color: #ccc;
}
.tree a {
	position: relative;
	z-index: 1;
	padding: 3px 8px;
	border: .13em solid #ccc;
	border-radius: 4px;
	color: var(--off-black);
	background-color: var(--light-gray);
	cursor: pointer;
	text-decoration: none;
}
.tree a[data-active="1"],
.tree span[data-active="1"] {
	background-color: var(--off-black);
	color: var(--light-gray);
	border: .13em solid var(--off-black);
}
.tree span {
	position: relative;
	z-index: 1;
	padding: 3px 8px;
	border: .13em solid #ccc;
	border-radius: 4px;
	color: var(--off-black);
	background-color: var(--light-gray);
	cursor: default;
}
.tree-marker {
	text-transform: uppercase;
	display: inline-block;
	background-color: unset;
	color: var(--off-black);
	border: unset;
	font-variation-settings: "wght" 700;
	font-weight: 700;
	cursor: unset;
	margin-left: 20px;
	animation: tree-marker 1s infinite ease-in-out alternate;
}
@keyframes tree-marker {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(10px);
	}
}
.tree .tree-page {
	border: 1px solid var(--off-black);
	box-shadow: 4px 4px var(--off-black);
}

/* Info */
.info {
	font-family: "Geist Mono", monospace;
	font-size: 14px;
	font-variation-settings: "wght" 400;
	font-weight: 400;
	line-height: 1.2em;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-wrap: pretty;
}
.info-heading {
	font-family: "Geist Mono", monospace;
	font-size: 14px;
	font-variation-settings: "wght" 700;
	font-weight: 700;
	line-height: 1.2em;
	text-transform: uppercase;
}
.info-section {
	border: 1px solid var(--off-black);
	background-color: var(--primary);
	box-shadow: 4px 4px var(--off-black);
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: start;
}
.info-section-title {
	background-color: var(--off-black);
	border-radius: 0 0 4px 0;
	color: var(--primary);
	padding: .2em 8px .25em 8px;
	font-family: "Geist Mono", monospace;
	font-size: 10px;
	font-variation-settings: "wght" 700;
	font-weight: 700;
	line-height: 1.2em;
	text-transform: uppercase;
}
.info-section-help {
	position: absolute;
	border: unset;
	font-family: inherit;
	top: 5px;
	right: 5px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Geist Mono", monospace;
	font-size: 14px;
	font-variation-settings: "wght" 700;
	font-weight: 700;
	line-height: 1em;
	background-color: unset;
	border: 1px solid var(--off-black);
	color: var(--off-black);
	cursor: pointer;
}
.info-section[data-active="1"] .info-section-help {
	background-color: var(--off-black);
	color: var(--primary);
}
.info-section-help:hover {
	opacity: .5;
}
.info-section-help:active {
	opacity: .25;
}
.info-section-desc {
	font-style: italic;
	display: none;
	font-size: 12px;
	line-height: 1.2em;
	padding: 8px 20px 0 8px;
	font-variation-settings: "wght" 700;
	font-weight: 700;
}
.info-section[data-active="1"] .info-section-desc {
	display: block;
}
.info-section-data {
	padding: 8px 20px 8px 8px;
}
.info-section-break {
	word-break: break-all;
}
.info-section-data a {
	color: var(--off-black);
	text-decoration-thickness: 1px;
	text-underline-offset: .2em;
	white-space: nowrap;
}
.info-section-data a:hover {
	opacity: .5;
}
.info-section-data a:active {
	opacity: .25;
}
.info-section-data-break {
	display: block;
	height: 8px;
}
.info-section-table {
	display: flex;
	flex-direction: column;
	padding: 8px;
}
.info-section-table-row {
	display: grid;
	grid-template-columns: 160px 1fr;
}