* {
	box-sizing: border-box;
}

::selection {
	background-color: var(--accent-colour);
	color: var(--accent-foreground);
}

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

body {
	background-image: linear-gradient(#000, var(--background-light));
	background-attachment: fixed;
	color: #fff;
	min-height: calc(100vh - 48px);
	margin: 0;
	margin-top: 48px;
	font-size: 12pt;
	font-family: "Rubik", sans-serif;
}

nav {
	background-color: #ff7622;
	color: #000;
	height: 48px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	padding: 0;
	user-select: none;
}

nav ul {
	margin: 0;
	padding: 0;
	display: flex;
}

nav li {
	display: inline-block;
	height: 48px;
}

nav li > a {
	display: block;
	height: 48px;
	text-decoration: none;
	color: #000;
	font-size: 20pt;
	font-weight: bold;
	line-height: 48px;
	padding: 0 8px;
}

nav li > a:hover, nav li > a.active, nav li > a:focus {
	background-color: #fff;
	text-decoration: none;
}

a {
	color: var(--accent-colour);
	text-decoration: none;
	font-weight: bold;
}

a:hover, a:focus {
	text-decoration: underline;
}