/* Park & Perk CSS */

/* Variables and basics */
:root {
	--nav-color: #5d297b; /* 532d8b */
	--bg-color:  #121212; /* 1a0d00 */
	--styled-font: "Truculenta", "Verdana", "sans-serif"; /* Spinnaker */
	--dim-effect: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}
* {
	box-sizing: border-box;
}
a {
	color: white;
	text-decoration: none;
}
a.current {
	background: none;
	background-color: var(--nav-color);
	font-weight: bold;
}
/* Body stuff */
body {
	min-height: 100%;
	background-color: var(--bg-color);
	font-family: "Verdana", "sans-serif";
	color: white;
	font-size: 12pt;
	margin: 0;
}
.bg-image {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: url("Media/coffee_beans.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	filter: blur(5px);
}
.content {
	background: var(--dim-effect);
	position: absolute;
	top: 0; left: 0;
	min-width: 100%;
	min-height: 100%;
}
/* Nav stuff */
.navbar {
	position: sticky;
	top: 0;
	display: flex;
	justify-content: space-between;
	background-color: var(--bg-color);
}
.navbar img {
	margin-top: 2px;
	margin-bottom: 2px;
	background-color: white;
	vertical-align: bottom;
	height: 96px;
}
.navbar div {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
}
.nav a {
	display: inline-block;
	margin: 2px 5px;
	width: 150px;
	font-family: var(--styled-font);
	font-size: 12pt;
	text-shadow: 4px 4px 2px black;
	text-align: center;
}
.nav a:hover {
	background-color: var(--nav-color);
	box-shadow: 0 0 5px 5px var(--nav-color);
	font-weight: bold;
}
.nav a:active {
	background-color: var(--nav-color);
	box-shadow: none;
}
/* Main content */
main {
	text-align: center;
	margin-top: 10px;
}
h1 {
	font-family: 'Truculenta', "Verdana", "sans-serif";
	text-align: center;
}
.pagenav {
	width: 45%;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 10px;
	border-bottom: 1px solid grey;
}
.pagenav a:hover {
	text-decoration: underline;
}
a.anchor:before {
	display: block;
	content: "";
	margin-top: -100px;
	height: 100px;
	visibility: hidden;
}
/* Footer stuff */
footer {
	position: sticky;
	top: 100%;
	width: 100%;
	padding: 1px;
	background-color: var(--bg-color);
	text-align: center;
	font-size: 9pt;
}
footer span {
	display: inline-block;
}
#mail:hover {
	text-decoration: underline;
}
#siteseal {
	position: absolute;
	bottom: 10px; right: 0;
}
