﻿@charset "UTF-8";

/* Last modified: 2024-06-26 */

* {
	margin: 0;
	padding: 0;
	border: none;
	box-sizing: border-box;
}

:lang(en), :lang(de) {
	hyphenate-character: "‐";
}

:root {
	--main-dark: #181820;
	--main-light: #e8e8e0;
	
	--brand-yellow: #FFD700;
	--brand-purple: #950DC2;
	--brand-red: #CC0051;
	--brand-green: #009B77;
	
	--focus-outer: #0d0d0d;
	
	--link: blue;
	--visited: purple;
	--active: red;
	
	--main-font: serif;
	--code-font: monospace;
}

body {
	color: var(--text);
	background-color: var(--bg);
	padding: 8px;
	font-family: var(--main-font);
	
	--text: var(--main-dark);
	--bg: var(--main-light);
}

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}

a:link {
	text-decoration: none;
	color: var(--link);
}

a:visited {
	color: var(--visited);
}

a:hover {
	text-decoration: underline;
}

a:active {
	color: var(--active);
}

:focus {
	outline: 1px dotted var(--focus-outer);
}

i, em, code var, pre var {
	font-weight: inherit;
	font-style: inherit;
}

i:not([class]), em:not([class]), var {
	font-style: italic;
}

i.b, em.b, b {
	font-weight: bold;
}

i.caps, em.caps {
	text-transform: uppercase;
}

dfn {
	font-weight: bold;
	font-style: inherit;
}

strong {
	font-weight: bold;
}

strong i.b, strong em.b, strong b {
	font-weight: 900;
}

abbr[title] {
	cursor: help;
	
	text-decoration: underline;
	text-decoration-style: dotted;
}

code, samp, kbd, pre {
	font-family: var(--code-font);
}

button, select, input[type="button"], input[type="checkbox"], input[type="radio"] {
	cursor: pointer;
}

.valign-helper {
	text-align: center;
	vertical-align: middle;
	height: 100%;
	display: inline-block;
}

.no-select {
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

@media (prefers-color-scheme: dark) {
	:root {
		--focus-outer: #f2f2f2;
		
		--link: cornflowerblue;
		--visited: plum;
		--active: tomato;
	}
	
	body {
		--text: var(--main-light);
		--bg: var(--main-dark);
	}
}