:root {
	--secondary-bg: #aaa;
	--darken4: #0004;
	--darken8: #0008;
	--lightest: #fee;
}

header {
	background-image: url("images/foggy.jpg");
	background-size: cover;
	background-color: var(--secondary-bg);
	min-height: 50vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
	padding: 0;
}

header>* {
	text-align: center;
	margin: 0;
}

h1 {
	text-align: left;
}

h2 {
	font-size: 8vw;
}

ul.nav {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	/*THIS IS HOW YOU GET THE FLOATING BUTTONS!!*/
}

li.toplinks {
	min-width: 20%;
	margin: .5em; 
}

a.toplink {
	color: var(--lightest);
	background-color: var(--darken4);
	display: block;
	text-decoration: none;
	padding: .2em .5em .3em;
	border-radius: 8px;
}

body {
	font-family: "Avenir Next",system-ui,sans-serif;
	font-size: 100%;
	line-height: 1.4em;
	margin: 0;
}

body * {box-sizing: border-box;}

body>* {
	padding: 1em;
}

main {
	display: flex;
	flex-direction: row;
	gap: 1em;
}

main>section {
	width: 50%;
	
}

section.primary {
	flex: 3;
}

section.secondary {
	flex: 2;
}