@font-face {
	font-family: "JosefinSans";
	src: url("/fonts/JosefinSans-VariableFont_wght.ttf")
}

:root {
	--bg-col: #181A1B;
	--bg-col-alt: #2F3649;
	--acc-col: #24434E;
	--fg-col: #E8E6E3;
}

html {
	background-color: var(--bg-col);
	color: var(--fg-col);
	min-height: 100%;
	font-size: 1cm;
	font-family: "JosefinSans";
}

body {
	text-align: center;
}

.column {
	display: flex;
	flex-direction: column;
}

.row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.spaced-around {
	justify-content: space-around;
}

.round-border {
	border: 1px solid var(--acc-col);
	border-radius: 1em;
	padding: 0.5em;
}

.category {
	flex: 1 1 0px;
	margin: 1em;
	min-width: 10em;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.category > * {
	text-align: center;
	padding: 0.5em;
	margin: 0;
}

.contents {
	border-radius: 1em;
	background-color: var(--bg-col-alt);
}

.margined {
	margin: 1em;
}
