:root {
	--green: #326964;
	--violet: #967B7E;
	--white: #F0F0F0;
	--black: #262626;
}

body {
	font-family: Segoe UI;
	margin: 0;
}

.container {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

header {
	background-color: var(--green);
	width: 100vw;
	height: 10vh;
	display: flex;
	align-items: center;
}

main {
	/*margin: 0vh 5vw;*/
	/*min-height: 100vh;*/
	flex-grow: 1;
}

footer {
	background-color: var(--black);
	color: var(--white);
	width: 100vw;
	height: 20vh;
}

h1 {
	color: var(--white);
	font-size: 2rem;
	margin-left: 5vw;
}

.sectionSelector {
	background-color: var(--white);
	border-top: 1px solid gray;
	box-shadow: 0 0 5px 0 #888888;
	width: 100vw;
	height: 15vh;
	display: flex;
	justify-content: space-between;
}

.sectionSelector ul {
	width: 100vw;
	display: flex;
	list-style: none;
}

.sectionSelector li {
	padding: 0 5px;
	cursor: pointer;
	flex-grow: 1;
	text-align: center;
}