:root {
	--secondary-bg: #aaa;
	--darken4: #0004;
	--darken8: #0008;
	--lightest: #fee;
	--light: #a8b;
}

html * {box-sizing: border-box;} 

body {
	font-family: "Avenir Next",system-ui,sans-serif;
	font-size: 100%;
	line-height: 1.4em;
	margin: 0;
}

body>* {
	padding: 1em; 
}

header {
	background-image: linear-gradient(#0006,#0006),url("images/fogheaderbg.jpg");
	background-size: cover;
	background-position: center 60%; 
	background-color: var(--secondary-bg);
	min-height: 35vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
	padding: 0; 
	color: var(--light);
}

header>* {
	text-align: center;
	margin: 0;
}

h1 {
	text-align: left;
    background-color: var(--darken4);
    font-size: 1.25rem;
	padding-bottom: .4em;	
}

h2 {
	/* background-color: var(--darken4); */
	padding: .6em;
	font-size: 8vw;
    /*text-shadow: 0px 0px 3px #000; */
}

ul.nav {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
}

li.toplinks {
	min-width: 20%;
	margin: 1em;
}

a.toplink {
	color: var(--lightest);
    background-color: var(--darken4);
	padding: .2em .5em .3em;	
	display: block;
	text-decoration: none;
	border-radius: 4px;
}

main {
	display: flex;
	flex-direction: row;
	gap: 1em;
}

main>section {
	width: 50%;
}

section.primary {
  flex: 3;
}
section.secondary {
  flex: 2;
}