:root {
	--gold: #E7B34E;
	--off-white: #F3EDE6;
	--red: #D1240D;
}

html {
	background: black;
	font-synthesis: none;
	padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
	margin: auto;
	display: flex;
	min-height: 100vh;
	scroll-behavior: smooth;
	scroll-padding-top: 1em;
}

body {
	text-align: center;
	color: var(--off-white);
	animation: textFade 750ms linear;
	font-family: "neue-kabel", -apple-system, ui-sans-serif, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 1em;
	padding: 2em 1em;
	margin: auto;
}

@keyframes textFade {
	0% { color: black; }
	25% { color: black; }
	50% { color: var(--red); }
	75% { color: var(--gold); }
	100% { color: var(--off-white); }
}

a, a:visited {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:hover svg {
	fill: none;
	stroke: var(--off-white);
	stroke-width: 4;
}

h3 + h2 {
	margin-top: -1em;
}

dl {
	width: fit-content;
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 1em 0;
	margin: auto;
}

dt, dd {
	padding: 0.25em 0;
	margin: 0;
}

dt {
	padding-right: 1em;
	text-align: right;
	font-weight: 600;
}

dd {
	text-align: left;
	padding-left: 1em;
	/* align-self: end; */
}

ul {
	max-width: 48em;
	list-style-type: none;
	margin: 0;
	padding: 0;
	align-items: end;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

ul li {
	flex: 0 0 calc(33.33% - 1em);
	max-width: 100%;
	margin: 0.5em;
	padding: 0;
	top: 0;
	left: 0;
	z-index: 0;
}

ul li svg {
	width: 100%;
	height: auto;
	display: block;
}

p {
	line-height: 1.5em;
	margin: 1em 0;
}