:root {
	--bg: #FFFFFFD0;
}

body {
	font-family: sans-serif;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding:0;
	margin:0;
	background: url("/assets/Background.png"), url("/assets/Background2.png"), black;
	background-size: 256px, 128px;
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0
}

.header {
	display:flex;
	flex-direction: column;
}
.header>* {
	display:inline;
	flex: 0 1 auto
}
.header>h1
{
	text-align:center;
}
.nav-wrapper {
	position: sticky;
	top: 0;
	padding: 10px;
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.nav-wrapper>a {
	text-decoration:none;
	margin:10px;
}
.page-body {
	max-width:1000px;
	background-color: var(--bg);
	box-shadow: 0 0 0.5em 0.5em var(--bg);
	padding: 1em;
}
.page-wrapper {
	margin:0;
	padding:0;
	display:flex;
	width:100%;
	justify-content:center;
}