@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	src: local('Montserrat-Regular'),
		url(https://fonts.gstatic.com/s/montserrat/v6/zhcz-_WihjSQC0oHJ9TCYBsxEYwM7FgeyaSgU71cLG0.woff)
		format('woff');
}

body {
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	background-color: white;
	font-size: 2vw;
	margin: 2%;
}

.headergrid {
	display: grid;
	grid-template-columns: 66% 34%;
}

.headeraside {
	text-align: right;
}

.portrait {
	width: 100%;
	max-width: 200px;
}

.subheader {
    font-size: 2vw;
    font-weight: bold;
    text-align: right;
}

nav {
	background-color: #c7a693;
	color: white;
	vertical-align: middle;
	overflow: auto;
	position: relative;
	width: 100%;
	float: left;
	display: grid;
	grid-template-columns: 33% 34% 33%;
}

.navcol {
	text-align: center;
}

section {
	padding: 3%;
	display: grid;
	grid-template-columns: 34% 66%;
}

.contentaside {
	text-align: center;
}

.contentmain {
	width: 100%;
}

.story {
	grid-template-columns: 100%;
}

blockquote {
	font-style: italic;
	background-color: #dbc3d0;
	width: 80%;
}

footer {
	background-color: #c7a693;
	text-align: center;
	vertical-align: middle;
}

h1 {
	color: #5e0231;
	font-family: arial;
	padding: 10px;
	font-size: 5vw;
	text-align: center;
	text-rendering: optimizeLegibility;
    letter-spacing: .05em;
    text-shadow: 4px 4px 0px #dbc3d0;
}

a {
	color: #5e0231;
	text-decoration: none;
}

a:hover {
	color: #dbc3d0;
}

button {
	font-size: 3vw;
	color: #5e0231;
	background-color: #c7a693;
	letter-spacing: .05em;
	border: none;
	border-radius: 5px;
	padding: 1vw;
	text-shadow: 4px 4px 0px #dbc3d0;
}


@media only screen and (max-width: 800px) {
	body {
		font-size: 4vw;
	}
	section {
		grid-template-columns: 100%;
	}
	button {
		font-size: 4vw;
	}
	h1 {
		font-size: 8vw;
	}
	.subheader {
		font-size: 4vw;
	}
}