@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;1,300;1,400&family=Vollkorn+SC&family=Vollkorn:ital@0;1&display=swap');

* {
	box-sizing: border-box;
}
:root {
  --black: #2a2a28;
  --white: #F3F3F3;
  --color: #894D2F;
  --grey: #686864;
  --lightgray: #C3C3C1;
  
  --yellow: #DEA402;
}

body {
	display: flex;
	flex-flow: column nowrap;
	
	font-family: Vollkorn, serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	
	background-color: var(--white);
	color: var(--black);
	
	width: 35vw;
	min-width: 450px;
	margin-left: auto;
	margin-right: auto;
}
nav {
	margin-top: 75px;
	margin-bottom: 75px;
	height: 50px;
	
	font-size: 16px;
	line-height: 20px;
	text-align: center;
}
header {
	/*
	font-size: 24px;
	line-height: 32px;
	*/
	
	font-size: 28px;
	line-height: 36px;
	margin-left: -50px;
	margin-right: -50px;
}
article {
}
article img {
	max-width: 70%;
	height: auto;
	margin-left: 15%;
	box-shadow: 3px 3px 15px var(--lightgray);
}
header + article, article + article, article + header {
	margin-top: 100px;
}
footer {
	height: 200px;
}

h1 {
	text-transform: lowercase;
	font-family: 'Vollkorn SC', serif;
	display: inline;
}
h3 {
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	font-size: 20px;
	line-height: 28px;
	text-transform: uppercase;
	margin-bottom: 6px;
	letter-spacing: 1px;
}
h5 {
	/*
	font-family: 'Vollkorn SC', serif;
	text-transform: lowercase;
	*/
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 2px;
	
	font-size: 12px;
	line-height: 16px;
	margin-top: -6px;
	margin-bottom: 10px;
}

p + p {
	text-indent: 1em;
}
ul + p, p + ul {
	margin-top: 1.5em;
}
.smallnote {
	font-size: 14px;
	line-height: 20px;
	font-style: italic;
	display: inline-block;
	padding-right: 35%;
}
.smallnote em {
	font-style: normal;
}
em {
	font-style: italic;
}

q {
	display: block;
	font-style: italic;
}
q em {
	font-style: normal;
}
.attr {
	display: block;
	text-align: right;
	
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 2px;
	
	font-size: 12px;
	line-height: 16px;
	
	margin-bottom: 32px;
}
article img + .attr {
	margin-right: 15%;
}
/*
.attr em {
	font-style: normal;
}
*/

a:link, a:visited, a:hover, a:active {
	text-decoration: none;
}
a:link, a:visited {
	color: var(--color);
}
a:hover, a:active {
	color: var(--grey);
	text-decoration: underline;
}




@media screen and (max-width: 600px) {
	body {
		font-size: 18px;
		line-height: 24px;
		
		width: 100%;
		min-width: 0;
		margin-left: 0;
		margin-right: 0;
		padding-left: 30px;
		padding-right: 30px;
	}
	nav, header, article {
		max-width: 100%;
	}
	nav {
		font-size: 14px;
		line-height: 18px;
		
		margin-top: 60px;
		margin-bottom: 60px;
		height: 25px;
	}
	header {
		font-size: 20px;
		line-height: 28px;
		
		margin-left: 10px;
		margin-right: 10px;
	}
	header + article, article + article, article + header {
		margin-top: 75px;
	}
	footer {
		height: 150px;
	}
	h3 {
		font-size: 18px;
		line-height: 24px;
	}
	h5 {
		font-size: 10px;
		line-height: 14px;
	}
}