
@font-face {
	font-family: bitthingfont;
	src: url("./MerriweatherSans-Regular.ttf") format("truetype");
}
@font-face {
	font-family: bitthingfont;
	font-weight: bold;
	src: url("./MerriweatherSans-Bold.ttf") format("truetype");
}
* {
	box-sizing: border-box;
}
h1 {
	font-size: 4vh;
}
body {
	margin: 15px;
	font-family: bitthingfont, serif;
	padding-left: max(10px, min(calc(50vw - 33vh), 15vw));
	padding-right: max(10px, min(calc(50vw - 33vh), 15vw));
}
div#background-container {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: -1;
}
div#background {
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(-15deg, #D5CEAC,#D5CEAC 15px,#DAC0AC 15px,#DAC0AC 30px);
}
div#main {
	position: relative;
	width: 100%;
}
a {
	display: inline-block;
	background-color: #AAAAAA;
	color: white;
	padding: 0.8vh;
	text-decoration: none;
	border-radius: 5px;
	border: 3px ridge #666666;
	box-shadow: 2px 2px 2px gray, inset 5px 5px 10px #666666;
	text-shadow: rgba(0, 0, 0, 0.2) 3px 2px 2px;
	transition-duration: 0.1s;
	margin: 2px;
	user-select: none;
}
a.disabled {
	pointer-events: none;
	color: #DDDDDD;
}
a:hover {
	color: cyan;
	background-color: #888888;
	text-shadow: 0px 0px 3px white;
} 
a:active {
	background-color: #777777;
}
h2 {
	margin: 0;
}
.category {
	margin: 10px;
	padding: 5px;
	box-shadow: 2px 2px 10px black;
	border: 3px ridge #666666;
	border-radius: 5px;
	background-color: rgba(232, 232, 188, 0.2);
	backdrop-filter: blur(5px);
	font-size: 2vh;
	transition-duration: 0.2s;
}
.category:hover {
	background-color: rgba(238, 238, 188, 0.3);
	box-shadow: 2px 2px 15px black;
}
table {
	border-collapse: collapse;
	border: 5px outset gray;
}
th {
	text-decoration: underline;
}
th,td {
	min-width: min(100px, 20vw);
	word-break: break-word;
	max-width: 250px;
	padding: 2px;
	border: 5px inset gray;
	background-color: rgba(200, 200, 200, 0.1);
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}
td>a {
	width: min(15ch, 15vw);
	word-break: break-word;
}
th:not(:first-of-type), td:not(:first-of-type) {
	text-align: center;
}
code,pre {
	outline: 1px solid black;
	border-radius: 4px;
	background-color: rgba(200, 200, 200, 0.5);
}
p {
	margin-bottom: 10px;
	margin-top: 10px;
	text-indent: 1ch;
}
