:root {
	--col_primary_bg: #1e1e1e;
	--col_secondary_bg: #1a1a1a;
	--col_header_bg: #2b2b32;
	--col_border_line: #5555ff;
	--col_text: #e0e0f0;
	--col_active_menu_item: #5555ff;
	--col_menu_item_hover: #505060;
	--col_tagline: #90e0b0;
	--col_link: #95a5ff;
	--col_blockquote_bg: #2b2b32;
	--col_blockquote_border: #505060;
	--col_code_bg: #2b2b32;
	--col_code_text: #b0e0ff;
	--col_caption_text: #b0c0e0;
	--col_blog_date_text: #b0c0e0;
	--col_table_header: #2b2b32;
	--col_table_bg: #1a1a1a;
	--col_table_border: #505060;
	--col_games_hover: #353540;
	--border_thickness: 4px;
	--bold_letter_spacing: 0.02em;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-y: scroll;

	font-size: 110%;
}

body {
	font-family: Verdana, Arial, sans-serif;
	line-height: 1.6;
	color: var(--col_text);
	background-color: var(--col_secondary_bg);

	display: flex;
	flex-direction: column;
	min-height: 100vh;

	background-image: url('images/background_tiled.png');
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: top left;
    background-size: auto;
}

header {
	position: fixed;
	width: 100%;
	background: var(--col_header_bg);
	z-index: 1000;
	transition: top 0.3s;
	border-bottom: var(--border_thickness) solid var(--col_border_line);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	padding: 20px;
	position: relative;

	font-size: 16px;
}

nav ul li {
	margin: 0 5px;
	display: flex;
	align-items: center;
}

nav ul li a {
	color: white;
	text-decoration: none;
	font-weight: bold;
	padding: 5px 10px;
	transition: color 0.3s, background-color 0.3s, border-radius 0.3s;
}

nav ul li a:hover {
	background-color: var(--col_menu_item_hover);
	border-radius: 5px;
}

nav ul li a.active {
	background-color: var(--col_active_menu_item);
	border-radius: 5px;
}

nav ul li.logo {
	position: relative;
	z-index: 1001;
	margin-top: -45px;
	margin-left: 210px;
	margin-right: 210px;
}

nav ul li.logo img {
	height: 90px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

nav ul li.logo a:hover {
	background-color: #0000;
}

h1, h2, h3, h4 {
	color: white;
	margin-bottom: 10px;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.75em;
}

h3 {
	font-size: 1.5em;
}

h4 {
	font-size: 1.25em;
}

h4.tagline {
	color: var(--col_tagline);
	text-align: center;
	font-style: italic;
	letter-spacing: var(--bold_letter_spacing);
	margin-bottom: 20px;
	text-shadow: 0px 2px 4px black;

}

bi {
	font-weight: bold;
	font-style: italic;
	letter-spacing: var(--bold_letter_spacing);
}

main {
	padding-top: 50px;
	width: 80%;
	max-width: 1000px;
	margin: 0 auto;
	background-color: var(--col_primary_bg);
	border: 1px solid black;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
	flex: 1 0 auto;
	padding-bottom: 50px;
}

section {
	padding: 50px 25px 0px 25px;
	margin: auto;
}

section p {
	margin-bottom: 20px;
}

section p.post-info {
	font-size: 0.8em;
	color: var(--col_blog_date_text);
	letter-spacing: 0.05em;
	margin-top: -0.5em;
}

.clear-both {
    clear: both;
    margin-top: 50px;
}

.clear-both-no-margin {
    clear: both;
}

section b {
	color: white;
	letter-spacing: var(--bold_letter_spacing);
}

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

section a:hover {
	text-decoration: underline;
}

section a.external::after {

	content: "";
	display: inline-block;
	width: 	1.0em;
	height: 1.0em;
	margin-left: 0.2em;
	vertical-align: -0.02em;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg transform='rotate(-45 24 24)'%3E%3Cpath d='M22.4,4a2,2,0,0,0-2,2V16.1H8a2,2,0,0,0-2,2V29.9a2,2,0,0,0,2,2H20.4V42a2,2,0,0,0,2,2,2.2,2.2,0,0,0,1.5-.6L43.4,25.5a2.2,2.2,0,0,0,0-3L23.9,4.6A2.2,2.2,0,0,0,22.4,4Z' fill='black'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
	        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg transform='rotate(-45 24 24)'%3E%3Cpath d='M22.4,4a2,2,0,0,0-2,2V16.1H8a2,2,0,0,0-2,2V29.9a2,2,0,0,0,2,2H20.4V42a2,2,0,0,0,2,2,2.2,2.2,0,0,0,1.5-.6L43.4,25.5a2.2,2.2,0,0,0,0-3L23.9,4.6A2.2,2.2,0,0,0,22.4,4Z' fill='black'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
}

section blockquote {
	font-style: italic;
	border-left: 5px solid var(--col_blockquote_border);
	background-color: var(--col_blockquote_bg);
	margin: 20px 0;
	padding: 10px 15px 10px 15px;
}

blockquote p {
	margin-bottom: 0;
}

pre {
	background-color: var(--col_code_bg);
	padding: 15px;
	border-radius: 5px;
	overflow-x: auto;
	font-size: 1em;
	line-height: 1.4;
	margin: 20px 0;
}

section code {
	font-family: 'Courier New', Courier, monospace;
	font-weight: bold;
	background-color: var(--col_code_bg);
	color: var(--col_code_text);
	padding: 2px 4px;
	border-radius: 3px;
	font-size: 0.9em;
}

section ul, ol {
	margin: 10px 0;
	padding-left: 40px;
	padding-bottom: 10px;
}

section li {
	margin: 5px 0;
}

section img {
	max-width: 100%;
	height: auto;
	margin: 10px auto 20px auto;
	display: block;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

section img.no-shadow {
	box-shadow: none;
	border-radius: 0;
}

img.pixelated {
	image-rendering: -moz-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: pixelated;
	-ms-interpolation-mode: nearest-neighbor;
}

.video-embed {
	display: block;
	width: 100%;
	max-width: 820px;
	aspect-ratio: 16 / 9;
	margin: 10px auto 20px auto;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.video-embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.itch-embed {
	margin: 10px 0 20px 0;
	text-align: center;
}

section figcaption {
	color: var(--col_caption_text);
	text-align: center;
	margin-top: -15px;
	margin-bottom: 15px;
	font-style: italic;
	font-size: 0.9em;
	letter-spacing: var(--bold_letter_spacing);
}

section img.float-right {
	float: right;
	margin-left: 10px;
	margin-bottom: 0;
	max-width: 40%;
}

section img.float-right-alpha {
	float: right;
	margin-left: 10px;
	margin-bottom: 0;
	max-width: 40%;
	box-shadow: none;
	border-radius: 0;
}

.portrait-figure {
	float: right;
	margin-left: 10px;
	margin-bottom: 0;
	max-width: 40%;
	text-align: center;
}

.portrait-figure img {
	display: block;
	box-shadow: none;
	border-radius: 0;
	margin-bottom: 0;
}

.portrait-figure figcaption {
	margin-top: 6px;
	margin-bottom: 0;
}

.portrait-figure figcaption:empty {
	display: none;
}

section img.float-left {
	float: left;
	margin-right: 15px;
	margin-top: 0;
	margin-bottom: 0;
	max-width: 50%;
}

section img.float-left-alpha {
	float: left;
	margin-right: 15px;
	margin-top: 0;
	margin-bottom: 0;
	max-width: 50%;
	box-shadow: none;
	border-radius: 0;
}

.float-left-figure {
    float: left;
    margin-right: 28px;
	margin-left: 4px;
	margin-top: -5px;
    margin-bottom: 0;
    max-width: 45%;
    text-align: center;
}

.float-right-figure {
    float: right;
    margin-left: 28px;
	margin-right: 4px;
	margin-top: -5px;
    margin-bottom: 0;
    max-width: 45%;
    text-align: center;
}

.float-caption {
    width: 100%;
    height: auto;
	box-shadow: none;
	border-radius: 0;
}

section table {
	width: 80%;
	border-collapse: collapse;
	margin: 20px auto;
	background-color: var(--col_table_bg);
}

section th, td {
	padding: 5px 10px 5px 10px;
	border: 2px solid var(--col_table_border);
}

section th {
	background-color: var(--col_table_header);
	letter-spacing: var(--bold_letter_spacing);
	color: white;
}

.table-scroll {
	overflow-x: auto;
}

.table-scroll table {
	margin-top: 0;
}

.controls-table {
	width: 80%;
	margin: 15px auto;
	border-collapse: collapse;
	background-color: var(--col_primary_bg);
}

.controls-table th, .controls-table td {
	padding: 5px 15px;
	text-align: left;
	vertical-align: middle;
	border: none;
}

.controls-table th {
	color: white;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: var(--bold_letter_spacing);
	background-color: var(--col_primary_bg);
}

.controls-table td {
	color: var(--col_text);
	border-top: 2px solid var(--col_table_border);
}

.controls-table.aligned {
	table-layout: fixed;
}

.controls-table.aligned th:first-child,
.controls-table.aligned td:first-child {
	width: 45%;
}

.textbox-section {
	background-color: var(--col_header_bg);
	margin-bottom: 20px;
	padding: 10px 20px 0 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	color: var(--col_text);
	display: block;
	overflow: hidden;
}

.textbox-section .float-right-image {
	float: right;
	margin-left: 20px;
	margin-bottom: 0;
	max-width: 50%;
	height: auto;
	display: block;
}

.textbox-section .float-right-image-alpha {
	float: right;
	margin-left: 10px;
	margin-bottom: 0;
	max-width: 50%;
	height: auto;
	display: block;
	box-shadow: none;
	border-radius: 0;
}

.textbox-section figure.centered-edgecase {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 20px 0;
	text-align: center;
}

.textbox-section figure.centered-edgecase img {
	margin: 0 auto;
	margin-bottom: 20px
}

.feedback-section {
	background-color: var(--col_header_bg);
	margin-bottom: 50px;
	padding: 10px 20px 10px 20px;
	text-align: center;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	color: var(--col_text);
}

.preview-section {
	background-color: var(--col_header_bg);
	margin-bottom: 30px;
	padding: 2px 20px 5px 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	text-decoration: none;
	color: var(--col_text);
	display: block;
	transition: background-color 0.3s, box-shadow 0.3s;
}

.preview-section a {
	text-decoration: none;
	color: inherit;
	display: block;
}

.preview-section a:hover {
	text-decoration: none;
}

.preview-section img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

.preview-section h3 {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 1.5em;
}

.preview-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.preview-header h3 {
	margin: 0;
}

.platforms {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 6px;
	flex-shrink: 0;
}

.platform {
	font-size: 0.7em;
	font-weight: bold;
	letter-spacing: 0.03em;
	padding: 3px 10px;
	border-radius: 999px;
	background-color: var(--col_menu_item_hover);
	color: #fff;
	white-space: nowrap;
}

.game-title-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.game-title-row h1 {
	margin: 0;
}

.preview-section p {
	margin-top: 10px;
	font-size: 1em;
	color: var(--col_text);
}

.preview-section:hover {
	background-color: var(--col_games_hover);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.download {
	text-align: center;
	font-size: 1.25em;
	font-weight: bold;
	color: white;
	margin: 10px 0 40px 0;
}

.nav-arrow {
	display: inline-block;
	width: 1.0em;
	height: 1.0em;
	vertical-align: -0.1em;
	background-color: currentColor;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	-webkit-mask-position: center;
	        mask-position: center;
	-webkit-mask-size: contain;
	        mask-size: contain;
}

.nav-arrow-left {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg transform='translate(48 0) scale(-1 1)'%3E%3Cpath d='M22.4,4a2,2,0,0,0-2,2V16.1H8a2,2,0,0,0-2,2V29.9a2,2,0,0,0,2,2H20.4V42a2,2,0,0,0,2,2,2.2,2.2,0,0,0,1.5-.6L43.4,25.5a2.2,2.2,0,0,0,0-3L23.9,4.6A2.2,2.2,0,0,0,22.4,4Z' fill='black'/%3E%3C/g%3E%3C/svg%3E");
	        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg transform='translate(48 0) scale(-1 1)'%3E%3Cpath d='M22.4,4a2,2,0,0,0-2,2V16.1H8a2,2,0,0,0-2,2V29.9a2,2,0,0,0,2,2H20.4V42a2,2,0,0,0,2,2,2.2,2.2,0,0,0,1.5-.6L43.4,25.5a2.2,2.2,0,0,0,0-3L23.9,4.6A2.2,2.2,0,0,0,22.4,4Z' fill='black'/%3E%3C/g%3E%3C/svg%3E");
}

.nav-arrow-right {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath d='M22.4,4a2,2,0,0,0-2,2V16.1H8a2,2,0,0,0-2,2V29.9a2,2,0,0,0,2,2H20.4V42a2,2,0,0,0,2,2,2.2,2.2,0,0,0,1.5-.6L43.4,25.5a2.2,2.2,0,0,0,0-3L23.9,4.6A2.2,2.2,0,0,0,22.4,4Z' fill='black'/%3E%3C/svg%3E");
	        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath d='M22.4,4a2,2,0,0,0-2,2V16.1H8a2,2,0,0,0-2,2V29.9a2,2,0,0,0,2,2H20.4V42a2,2,0,0,0,2,2,2.2,2.2,0,0,0,1.5-.6L43.4,25.5a2.2,2.2,0,0,0,0-3L23.9,4.6A2.2,2.2,0,0,0,22.4,4Z' fill='black'/%3E%3C/svg%3E");
}

@supports not ((-webkit-mask-image: url("")) or (mask-image: url(""))) {
	.nav-arrow,
	.dir-arrow,
	section a.external::after {
		display: none;
	}
}

.page-button {
	display: inline-block;
	margin: 0px 0px 10px 0px;
	padding: 10px 20px 10px 20px;
	background-color: var(--col_header_bg);
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
}

.page-button:hover {
	background-color: var(--col_menu_item_hover);
	text-decoration: none;
}

.page-button.disabled, .page-button:disabled {
	color: #777;
	cursor: not-allowed;
	pointer-events: none;
}

.page-buttons {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: flex-start;
}

.last-modified {

	margin-top: -5px;
	margin-left: auto;
	align-self: center;
	display: inline-flex;
	align-items: stretch;
	border-radius: 999px;
	overflow: hidden;
	font-size: 0.7em;
	font-weight: bold;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.last-modified-label,
.last-modified-date {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
}

.last-modified-label {
	background-color: var(--col_menu_item_hover);
	color: #fff;
}

.last-modified-date {
	background-color: var(--col_header_bg);
	color: var(--col_text);
}

.img-tooltip {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2000;
	max-width: 260px;
	padding: 6px 10px;
	background-color: var(--col_header_bg);
	color: var(--col_text);
	border: 2px solid var(--col_border_line);
	border-radius: 6px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
	font-size: 0.8em;
	line-height: 1.4;
	letter-spacing: 0.02em;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.15s ease;
}

.img-tooltip.visible {
	visibility: visible;
	opacity: 1;
}

arrows {
	font-family: Calibri, Verdana, Arial, sans-serif;
	font-weight: bold;
}

.dir-arrow {
	display: inline-block;
	width: 1em;
	height: 1em;
	vertical-align: -0.15em;
	background-color: currentColor;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	-webkit-mask-position: center;
	        mask-position: center;
	-webkit-mask-size: contain;
	        mask-size: contain;
}

.dir-arrow-right {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='m 12.668805,7 q 0,0.41592 -0.28498,0.7009 l -5.01412,5.01412 Q 7.069325,13 6.668805,13 6.275995,13 5.975615,12.71502 l -0.57767,-0.57766 q -0.29268,-0.29269 -0.29268,-0.7009 0,-0.40822 0.29268,-0.7009 l 2.25674,-2.25674 h -5.42233 q -0.40052,0 -0.65084,-0.28883 Q 1.331195,7.90116 1.331195,7.49294 V 6.50706 q 0,-0.40822 0.25032,-0.69705 0.25032,-0.28883 0.65084,-0.28883 h 5.42233 L 5.397945,3.25674 q -0.29268,-0.27728 -0.29268,-0.6932 0,-0.41591 0.29268,-0.69319 L 5.975615,1.29268 Q 6.268295,1 6.668805,1 q 0.40822,0 0.7009,0.29268 l 5.01412,5.01412 Q 12.668805,6.57638 12.668805,7 z' fill='black'/%3E%3C/svg%3E");
	        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='m 12.668805,7 q 0,0.41592 -0.28498,0.7009 l -5.01412,5.01412 Q 7.069325,13 6.668805,13 6.275995,13 5.975615,12.71502 l -0.57767,-0.57766 q -0.29268,-0.29269 -0.29268,-0.7009 0,-0.40822 0.29268,-0.7009 l 2.25674,-2.25674 h -5.42233 q -0.40052,0 -0.65084,-0.28883 Q 1.331195,7.90116 1.331195,7.49294 V 6.50706 q 0,-0.40822 0.25032,-0.69705 0.25032,-0.28883 0.65084,-0.28883 h 5.42233 L 5.397945,3.25674 q -0.29268,-0.27728 -0.29268,-0.6932 0,-0.41591 0.29268,-0.69319 L 5.975615,1.29268 Q 6.268295,1 6.668805,1 q 0.40822,0 0.7009,0.29268 l 5.01412,5.01412 Q 12.668805,6.57638 12.668805,7 z' fill='black'/%3E%3C/svg%3E");
}

.dir-arrow-left {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cg transform='rotate(180 7 7)'%3E%3Cpath d='m 12.668805,7 q 0,0.41592 -0.28498,0.7009 l -5.01412,5.01412 Q 7.069325,13 6.668805,13 6.275995,13 5.975615,12.71502 l -0.57767,-0.57766 q -0.29268,-0.29269 -0.29268,-0.7009 0,-0.40822 0.29268,-0.7009 l 2.25674,-2.25674 h -5.42233 q -0.40052,0 -0.65084,-0.28883 Q 1.331195,7.90116 1.331195,7.49294 V 6.50706 q 0,-0.40822 0.25032,-0.69705 0.25032,-0.28883 0.65084,-0.28883 h 5.42233 L 5.397945,3.25674 q -0.29268,-0.27728 -0.29268,-0.6932 0,-0.41591 0.29268,-0.69319 L 5.975615,1.29268 Q 6.268295,1 6.668805,1 q 0.40822,0 0.7009,0.29268 l 5.01412,5.01412 Q 12.668805,6.57638 12.668805,7 z' fill='black'/%3E%3C/g%3E%3C/svg%3E");
	        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cg transform='rotate(180 7 7)'%3E%3Cpath d='m 12.668805,7 q 0,0.41592 -0.28498,0.7009 l -5.01412,5.01412 Q 7.069325,13 6.668805,13 6.275995,13 5.975615,12.71502 l -0.57767,-0.57766 q -0.29268,-0.29269 -0.29268,-0.7009 0,-0.40822 0.29268,-0.7009 l 2.25674,-2.25674 h -5.42233 q -0.40052,0 -0.65084,-0.28883 Q 1.331195,7.90116 1.331195,7.49294 V 6.50706 q 0,-0.40822 0.25032,-0.69705 0.25032,-0.28883 0.65084,-0.28883 h 5.42233 L 5.397945,3.25674 q -0.29268,-0.27728 -0.29268,-0.6932 0,-0.41591 0.29268,-0.69319 L 5.975615,1.29268 Q 6.268295,1 6.668805,1 q 0.40822,0 0.7009,0.29268 l 5.01412,5.01412 Q 12.668805,6.57638 12.668805,7 z' fill='black'/%3E%3C/g%3E%3C/svg%3E");
}

.dir-arrow-up {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cg transform='rotate(-90 7 7)'%3E%3Cpath d='m 12.668805,7 q 0,0.41592 -0.28498,0.7009 l -5.01412,5.01412 Q 7.069325,13 6.668805,13 6.275995,13 5.975615,12.71502 l -0.57767,-0.57766 q -0.29268,-0.29269 -0.29268,-0.7009 0,-0.40822 0.29268,-0.7009 l 2.25674,-2.25674 h -5.42233 q -0.40052,0 -0.65084,-0.28883 Q 1.331195,7.90116 1.331195,7.49294 V 6.50706 q 0,-0.40822 0.25032,-0.69705 0.25032,-0.28883 0.65084,-0.28883 h 5.42233 L 5.397945,3.25674 q -0.29268,-0.27728 -0.29268,-0.6932 0,-0.41591 0.29268,-0.69319 L 5.975615,1.29268 Q 6.268295,1 6.668805,1 q 0.40822,0 0.7009,0.29268 l 5.01412,5.01412 Q 12.668805,6.57638 12.668805,7 z' fill='black'/%3E%3C/g%3E%3C/svg%3E");
	        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cg transform='rotate(-90 7 7)'%3E%3Cpath d='m 12.668805,7 q 0,0.41592 -0.28498,0.7009 l -5.01412,5.01412 Q 7.069325,13 6.668805,13 6.275995,13 5.975615,12.71502 l -0.57767,-0.57766 q -0.29268,-0.29269 -0.29268,-0.7009 0,-0.40822 0.29268,-0.7009 l 2.25674,-2.25674 h -5.42233 q -0.40052,0 -0.65084,-0.28883 Q 1.331195,7.90116 1.331195,7.49294 V 6.50706 q 0,-0.40822 0.25032,-0.69705 0.25032,-0.28883 0.65084,-0.28883 h 5.42233 L 5.397945,3.25674 q -0.29268,-0.27728 -0.29268,-0.6932 0,-0.41591 0.29268,-0.69319 L 5.975615,1.29268 Q 6.268295,1 6.668805,1 q 0.40822,0 0.7009,0.29268 l 5.01412,5.01412 Q 12.668805,6.57638 12.668805,7 z' fill='black'/%3E%3C/g%3E%3C/svg%3E");
}

.dir-arrow-down {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cg transform='rotate(90 7 7)'%3E%3Cpath d='m 12.668805,7 q 0,0.41592 -0.28498,0.7009 l -5.01412,5.01412 Q 7.069325,13 6.668805,13 6.275995,13 5.975615,12.71502 l -0.57767,-0.57766 q -0.29268,-0.29269 -0.29268,-0.7009 0,-0.40822 0.29268,-0.7009 l 2.25674,-2.25674 h -5.42233 q -0.40052,0 -0.65084,-0.28883 Q 1.331195,7.90116 1.331195,7.49294 V 6.50706 q 0,-0.40822 0.25032,-0.69705 0.25032,-0.28883 0.65084,-0.28883 h 5.42233 L 5.397945,3.25674 q -0.29268,-0.27728 -0.29268,-0.6932 0,-0.41591 0.29268,-0.69319 L 5.975615,1.29268 Q 6.268295,1 6.668805,1 q 0.40822,0 0.7009,0.29268 l 5.01412,5.01412 Q 12.668805,6.57638 12.668805,7 z' fill='black'/%3E%3C/g%3E%3C/svg%3E");
	        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cg transform='rotate(90 7 7)'%3E%3Cpath d='m 12.668805,7 q 0,0.41592 -0.28498,0.7009 l -5.01412,5.01412 Q 7.069325,13 6.668805,13 6.275995,13 5.975615,12.71502 l -0.57767,-0.57766 q -0.29268,-0.29269 -0.29268,-0.7009 0,-0.40822 0.29268,-0.7009 l 2.25674,-2.25674 h -5.42233 q -0.40052,0 -0.65084,-0.28883 Q 1.331195,7.90116 1.331195,7.49294 V 6.50706 q 0,-0.40822 0.25032,-0.69705 0.25032,-0.28883 0.65084,-0.28883 h 5.42233 L 5.397945,3.25674 q -0.29268,-0.27728 -0.29268,-0.6932 0,-0.41591 0.29268,-0.69319 L 5.975615,1.29268 Q 6.268295,1 6.668805,1 q 0.40822,0 0.7009,0.29268 l 5.01412,5.01412 Q 12.668805,6.57638 12.668805,7 z' fill='black'/%3E%3C/g%3E%3C/svg%3E");
}

footer {
	background-color: var(--col_header_bg);
	color: white;
	text-align: center;
	padding: 10px 0;
	width: 100%;
	border-top: var(--border_thickness) solid var(--col_border_line);
}

footer p {
	margin: 0;
}

footer a {
	color: inherit;
	text-decoration: underline;
}

@media (max-width: 768px) {

    body {
        font-size: 0.9em;
    }

    header {
        padding: 10px 0;
        border-bottom: 2px solid var(--col_border_line);
    }

    nav ul {
        padding: 5px;
    }

	nav ul li a {
        padding: 5px 5px;
    }

    main {
        width: 95%;
        padding: 10px;
        box-shadow: none;
		padding-top: 60px;
		padding-bottom: 40px;
    }

    section {
        padding: 20px 15px;
    }

    h1 {
        font-size: 1.75em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.25em;
    }

    h4 {
        font-size: 1.1em;
    }

    section img {
        max-width: 100%;
        margin: 10px auto;
    }

    section figcaption {
        margin-top: -5px;
    }

    .textbox-section .float-right-image,
    .textbox-section .float-right-image-alpha {
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 10px;
        float: none;
    }

    section table, .controls-table {
        width: 100%;
        margin: 10px 0;
    }

    .preview-section {
        padding: 10px;
        margin-bottom: 10px;
    }

    footer {
        padding: 15px 0;
    }

    .page-button {
        margin: 10px 0;
    }

}

@media (max-width: 768px) and (pointer: coarse) {
    nav ul li.logo {
		margin: 10px auto;
        margin-top: 0px;
    }

    nav ul li.logo img {
		height: 30px;

		position: static;
		transform: none;
    }

    main {
        padding-top: 80px;
    }
}