article {
	background-color: #123;
	border-radius: 3px;
	padding: 3px 3px 6px 3px;
}

article div {
	color: lightgray;
	display: table;
	font-size: 1.5px;
	padding-left: 8px;
	position: absolute;
	table-layout: fixed;
	top: 14px;
	width: 83.5%;
	z-index: 0;
}

body {
	align-items: center;
	background-color: darkslategray;
	display: flex;
	font-family: "HubotSans";
	height: 100vh;
	justify-content: center;
	margin: 0;
}

div>span {
	border-bottom-right-radius: 1px;
	border-right: .1px solid darkslategray;
	display: table-cell;
	height: 38px;
	padding-right: .5px;
	position: relative;
	text-align: right;
	vertical-align: bottom;
}

figure {
	align-items: center;
	color: white;
	display: flex;
	flex-direction: row-reverse;
	font-size: .3em;
	gap: .2em;
	margin: 0;
	position: relative;
	z-index: 1;
}

g {
	display: none;
	font-size: 3px;
	opacity: 0;
	text-anchor: start;
}

section {
	overflow: auto;
}

span span {
	color: gray;
	font-size: .7em;
}

text {
	font-size: .3em;
	pointer-events: none;
	text-anchor: middle;
	user-select: none;
}

ul {
	padding-left: 5px;
}

.tab {
	font-size: .3em;
	font-weight: bold;
	opacity: 0;
	paint-order: stroke;
	stroke: steelblue;
	stroke-width: .5;
	transform: translateX(50%);
}

#back {
	display: none;
	opacity: 0;
}

#main {
	display: block;
	height: 100%;
	position: absolute;
	width: 100%;
}

#main>a {
	pointer-events: none;
}

#welcome {
	animation: 3s ease-out 1.3 forwards alternate welcome;
	transform: translate(50%, 50%);
}

@font-face {
	font-family: "HubotSans";
	src: url("../fonts/Hubot-Sans.woff2") format("woff2");
}

@keyframes welcome {
	from {
		font-size: 0;
	}

	to {
		font-size: .4em;
	}
}