html * {
	box-sizing: border-box;
}

:root {
	--primary-color: #000000;
	--secondary-color: #eeddaa;
}

body{
	font-family: "Avenir Next", system-ui, sans-serif;
	color: var(--secondary-color);
	font-size: 100%
	line-height: 135%;
	background-color: var(--primary-color);
	background-image: linear-gradient(#0008,#0008), url("images/gothbg.jpg");
	background-position: center center;
	background-size: cover;
}


a {color: var(--secondary-color);}

header{
	min-height: 30vh;
	background-color: 88888833;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}


h1 {
	line-height: 1.2em;
	/*outline: 1px solid red; for debugging*/
	text-align: center;
}

main{
	padding-bottom: 10em;
}

.container{
	display: grid;
	gap: 1em 1em;
	grid-auto-flow: column
	background-color: #88888833;
}