body {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: .6em;
	padding-top: 1.2em;
	padding-inline: .6em;
	font-size: 3vh;
}

body > div {
	min-width: 60vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.2em;
	border-top: 1px solid #efefef;
	padding: 1.2em;
	position: relative;
}

h1 {
	padding-bottom: .6em;
}

ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .6em;
	width: 100%;
}

h2 {
	top: -.7em;
	background: #181818;
	width: fit-content;
	position: absolute;
	padding-inline: .6em;
	font-weight: 600;
	flex-wrap: wrap;
}

div > div {
	display: flex;
	flex-direction: column;
	gap: .3em;
	min-width: 60%;
}

h3 {
	font-weight: 400;
}

a {
	font-weight: 200;
	display: flex;
	flex-direction: column;
	text-decoration: unset;
	justify-content: flex-end;
	text-wrap: nowrap;
	flex: .3 1 0;
}

span:has(+ span) {
	font-size: .6em;
	text-decoration: unset;
	color: #a2a2a2;
}

span {
	text-decoration: underline;
	text-decoration-color: gray;
}

* {
	margin: unset;
	padding: unset;
	list-style: none;
}

*:link, *:visited {
	color: unset;
}

@media ( prefers-color-scheme: dark ) {
	body {
		background-color: #181818;
		color: #efefef;
	}
}

@media screen and ( max-width:900px ) {
	body {
		font-size:3rem;
	}
}