/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
} 

/*end of eric meyers reset*/

body {
	overflow-y: hidden;
	font-size: 19px;
	background-color: #3C2112;

}

#head_wrapper {
	display: grid;
	grid-template-columns: 50% 30%;
	padding: 0.6%;
	color: #E4BB8B;
}

h1 {
	font-weight: bold;
	font-size: 1.9em;
	font-family: "Libre Baskerville", serif;
}

nav {
	margin-top: 1%;
}

nav ul li {
	display: inline;
	background-color: #E4BB8B;
	padding: 2%;
	font-weight: bold;
	font-size: 1.2em;
	font-family: Roboto, sans-serif;
}

a:link, a:visited {
	color: #733702;
	text-decoration: none;
}

a:hover {
	color: #3C2112;
}

#biography {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	width: 4000px;
	grid-column-gap: 50px;
	padding: 1%;
	background-color: #73461F;
	font-family: Roboto, sans-serif;
}

h2 {
	font-weight: bold;
	font-size: 1.5em;
	font-family: "Libre Baskerville", serif;
	color: #3C2112;
	margin-bottom: 3%;
}

p {
	margin-bottom: 2%;
	font-family: Roboto, sans-serif;
}

.bio {
	background-color: #E4BB8B;
	padding: 3%;
	border: 3px solid #3C2112;
	position: relative;
}

img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 3%;
	margin-bottom: 2%;
}

.image {
	opacity: 100;
	font-family: Roboto, sans-serif;
	color: #3C2112;
}

.text {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 1;
	padding-top: 10%;
	padding-left: 2%;
	padding-right: 2%;
}

.bio:hover .text {
	opacity: 100;
	transition: opacity 1s;
}

.bio:hover .image {
	opacity: 0;
	transition: opacity 1s;
}

#statement {
	background-color: #E4BB8B;
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	padding: 2%;
}

.statement_image p {
	padding-left: 15%;
}