:root{
	--secondary-bg: #aaa;
	--darken4: #0004;
	--darken8: #0008;
	--lightest: #fee;
	--light: #aaf;
}

html * {box-sizing: border-box}

body {
	font-family: "Avernir next", system-ui, Sans-serif;
	fot-size: 100%;
	line-height: 1.4em;
	margin: 0em;
}

body>*{
	padding: 1em;
}

header {
	background-image: /* linear-gradient(var(--darken4), var(--darken8)),*/ url("images/image1.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: 1em;
	color: var(--light);
}

header>* {
	text-align: center;
	margin: ;

}


h1{
	font-size: 10vw;
	text-align: left;
	font-size: 1rem;
	
}
h2{
	padding: .3em;
  font-size: 10vw;
  text-shadow: 1px 1px 3px #000;
}

ul.nav {
	list-style:none;
	padding:0;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
}

li.toplinks {
	min-width: 20%;
	margin: 1e,;
}

a.toplink {
	color: var(--lightest);
	background-color:var(--darken8);
	padding: .3em .9em .8em;
	display: block;
	text-decoration: none;
	border-radius: 100px;
}

main {
	display: flex;
	flex-direction: row;
	gap: 1em;
}

main>section {
	width: 50%;
}

section.primary{
	flex: 4;
}
setion.secondary{
	flex: 1;
}