a {
	text-decoration: none;
}

body {
	margin: 0;
	font-family: sans-serif;
}

header {
	align-items: center;
	background: var(--color-detail);
	box-shadow: 0 2px 4px var(--color-shadow);
	display: flex;
	height: var(--header-size);
	margin-bottom: var(--header-size);
	width: 100%;
}

.green {
	--color-detail: #32B373;
}

.blue {
	--color-detail: #0066CC;
}

header svg {
	fill: none;
	height: var(--header-size);
	stroke: #FFF;
	stroke-width: 8px;
}

header svg:hover {
	fill: #FFF;
}

header a:first-of-type {
	margin: 0 auto 0 0;
}

header form {
	margin: 0 0 0 auto;
}

button {
	background: none;
	border: none;
}

.button {
	background: var(--color-detail);
	border: none;
	border-radius: 4px;
	box-shadow: 0 2px 4px var(--color-shadow);
	color: #FFF;
	display: block;
	padding: 1em 2em;
	margin: 1em auto 3em auto;
}

.button:hover {
	box-shadow: 0 2px 6px #A3A2A2;
	opacity: 0.9;
	transition-duration: 100ms;
}

.button-2 {
	background: none;
	border: none;
	float: right;
}

.button-2:hover {
	background: #EEEEF0;
	border-radius: 100px;
}

.button-2 svg {
	fill: var(--color-text-1);
	height: 1.5em;
	padding: 0.33em;
	width: 1.5em;
}

button:hover {
	cursor: pointer;
}

main {
	margin: 0 auto;
}

nav {
	display: flex;
	flex-direction: column;
	left: 0;
	position: fixed;
	top: var(--header-size);
}

nav form {
	display: none;
}

nav a, nav button {
	align-items: center;
	border-radius: 4px;
	color: var(--color-text-1);
	display: flex;
	margin: 8px;
	padding: 1em 2em;
	text-align: left;
}

nav button {
	font-size: 1em;
}

nav *:hover {
	background: var(--color-hover);
	cursor: pointer;
	text-decoration: none;
}

nav svg {
	height: 1em;
	margin-right: 2ch;
	width: 1em;
}

nav input {
	background: none;
	border: none;
	font-size: 1em;
	padding: 0;
}

:root {
	--color-border-1: #E9E9EB;
	--color-border-2: #D4D7DD;
	--color-error: #D13A2A;
	--color-hover: #F8F8FA;
	--color-text-1: #222222;
	--color-text-2: #A2A7AF;
	--color-text-3: #EE901E;
/*	--color-detail: #32B373;*/
	--color-green: #32B373;
	--color-shadow: #C2C0C0;
	--header-size: 70px;
}
