* { font-family: "Inconsolata"; }

:root {
	--bg-color: black;
	--text-color: white;
}

[data-theme="light"] {
	--bg-color: white;
	--text-color: black;
}

.spoiler::before {
	content: "Hover to reveal spoiler";
	color: gray;
	padding: 2px;
	border-radius: 3px;
}
.spoiler:hover::before {
	content: attr(data-spoiler);
    background-color: transparent;
	color: var(--text-color);
}

main { display: none; }
main.active { display: block; }
nav button {
	padding: 0 12px;
	margin-right: 4px;
	cursor: pointer;
}
nav button.active {
	background-color: #fff;
	color: black;
}

@font-face {
  font-family: 'Inconsolata Condensed Bold';
  src: url(Inconsolata_Condensed-Bold.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.logo {
	position: absolute;
	top: 5px;
	left: 0;
	font-family: "Inconsolata Condensed Bold";
	color: #ffffff33;
	font-size: 100px;
	user-select: none;
	-webkit-user-select: none; /* Safari */
	-moz-user-select: none;    /* Firefox */
	-ms-user-select: none;     /* Internet Explorer/Edge */
	pointer-events: none;
}

[data-theme="light"] .logo {
	color: #aaaaaa99;
}

#configdiv {
	position: absolute;
	bottom: 25px;
	left: 0;
	display: none;
}

select {
	background-color: var(--bg-color);
	color: var(--text-color);
}

nav {
	top: 5px;
	position: absolute;
}

body {
	background-color: var(--bg-color);
	color: var(--text-color);
}

button {
	background-color: var(--bg-color);
	color: var(--text-color);
}

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

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

.item {
	margin: 10px;
	border-radius: 5px;
}

footer {
	font-size: 10px;
	position: fixed;
	left: 0;
	bottom: 5px;
	width: 100%;
	z-index: -1;
}

sfooter {
	position: fixed;
	left: 0;
	bottom: 30px;
	width: 100%;
	z-index: -1;
}
