html {
	background-color: #111;
}

body {
	margin: 0;
	min-width: 320px;

	font-family: "sans-serif";
	--alt-font: "space-punk";
	font-size: 18px;
	--font-size-large: 24px;
	--font-size-small: 16px;
	--gap: 1.5em;

	--yellow: #fcee0a;
	--gray: #999;
	color: white;
	background: url("/resources/hex--QWvXX8jrfDKSEiD6oi6bbRL79oanxZzy7NGdjNNHo.webp") #171415;
}

@font-face {
	font-family: "space-punk";
	font-style: normal;
	font-weight: normal;
	src: url("/resources/space-punk.regular--EeYidzLoJU7qYzy4vU7c7LEd0IRcmrtAe3DUMVo8y1U.ttf") format("truetype");
	font-display: swap;
}

h1 {
	font-size: calc(1.25 * var(--font-size-large));
	font-weight: bold;
}

h2 {
	font-size: calc(1 * var(--font-size-large));
	font-weight: bold;
}

h3 {
	font-size: calc(0.8 * var(--font-size-large));
	font-weight: bold;
}

h4 {
	font-size: calc(0.7 * var(--font-size-large));
	font-weight: bold;
}

a {
	color: var(--yellow);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: var(--gray);
	text-decoration: none;
}

.Layout-KmrdyXma-layout {
	display: grid;
	grid-template-columns: 10px 1fr 10px;
	grid-template-areas:
		". content .";
}

.Layout-KmrdyXma-page {
	grid-area: content;

	display: flex;
	flex-direction: column;
}

.Layout-KmrdyXma-header {
	margin: var(--gap) 0 var(--gap);
	padding: 0 0 var(--gap);
	border-bottom: 3px double var(--yellow);
}

.Layout-KmrdyXma-content {
	display: flex;
	flex-direction: column;
}

.Layout-KmrdyXma-footer {
	margin: var(--gap) 0 var(--gap);
	padding: var(--gap) 0 0;
	border-top: 3px double var(--yellow);
}

@media all and (min-width: 620px) {
	body {
		--font-size-large: 32px;
		--gap: 2em;
	}

.Layout-KmrdyXma-layout {
		grid-template-columns: 1fr 600px 1fr;
	}
}
