html, body {
	min-width: 100vw;
	min-height: 100vh;
	margin: 0;
	padding: 0;

	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

html {
	font-size: 0.625rem;
}

h1 {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	text-align: left;
}

address {
	margin: 0;
	font-style: normal;
}

a {
	color: #69be28;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	color: #3a6a16;
}

body {
	font-size: 18px;
	background-image: url(banner.jpg);
	background-position: center center;
	background-size: cover;

	display: flex;
	flex-direction: column;
}

#header {
	flex: 0 0 50px;
	background-color: #fff;
	border-bottom: 1px solid #69be28;
	box-shadow: 0 0 5px rgba(0,0,0,0.25);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 25px;
	position: relative;
}

#header img {
	height: 30px;
	width: auto;
}

#content-wrapper {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 50px;
}

#content {
	padding: 50px;
	width: 750px;
	max-width: 100%;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.8);
	box-shadow: 0 0 5px rgba(0,0,0,0.25);
}

#content img {
	margin-bottom: 25px;
	width: 200px;
	max-width: 100%;
}

#content > :last-child {
	margin: 50px 0 0 0;
}
