html {
	color: #e9e9e9;
	background: url("../images/sheltered.png") center #1a1a1a;
	background-size: cover;
	height: 100%;
	font-family: Georgia, serif;
}

body {
	width: 86em;
	max-width: 80%;
	margin: 5em auto;
	padding: 0;
}

textarea {
	width: 100%;
}

footer p {
	text-align: center;
	font-size:  .75em;
}
/*CONTENT*********************/
article {
	display: flex;
	flex-wrap: wrap;
	column-gap: 1em;
}

article > div {
	flex-basis: 20em;
	flex-grow: 2;
}

article div img {
	width: 100%;
}


h1, h2, h3 {
	font-family: 'Helvetica', sans-serif;
	margin: 0;
}

h1, h2 {
	margin: 0 0 10px 0;
	border-top: 1px solid #e9e9e9;
}

h1 {
	border-top: 5px solid #e9e9e9;
	border-bottom: 5px solid #e9e9e9;
	font-size: 2em;
	width: 100%;
}

p {
	text-align: justify;
}

/*NAVIGATION******************/
nav ul {
	background-color: #e9e9e9;
	list-style-type: none;
	margin: 1em 0;
	padding: 0;
	display: flex;
	flex-flow: row;
	justify-content: center;
}

nav ul li a {
	display: inline-block;
	padding: 1em .5em;
	font-family: Helvetica, sans-serif;
	color: #1a1a1a;
	text-decoration: none;
	text-align: center;
	flex-grow: 1;
}

nav ul li a:hover {
	background-color: #d0d0d0;
}

.current_page {
	background-color: #d0d0d0;
	color: #bb0000;
}