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;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
input {
  -webkit-appearance: none;
}

a:visited {
  color: #111;
}

body {
  line-height: 1;
  font-family: "Georgia", serif;
}
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;
}

h1 {
  font-family: fairwater-solid-serif, serif;
  font-size: 64px;
  padding-bottom: 20px;
}

h2 {
  font-family: din-condensed, serif;
  font-size: 32px;
  padding-bottom: 24px;
}

form label, form input, form textarea {
  display: block;
}

form input, form textarea {
  width: 100%;
  height: 32px;
  line-height: 32px;
  font-size: 18px;
  border: 1px solid #DDD;
  border-radius: 4px;
}

form textarea {
  resize: none;
  height: auto;
  font: Georgia, serif;
}

form label {
  font-family: din-condensed, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px; 
  padding-top: 30px;
  padding-bottom: 3px;
}

form input[type=submit] {
  margin-top: 15px;
  background: #487f3b;
  color: #FFF;
  border-radius: 4px;
  border: none;
  padding: 10px;
  height: auto;
  cursor: pointer;
}

nav ul {
  padding-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

nav li {
  padding: 0 8px;
}

nav a {
  text-decoration: none;
  color: #232323;
  font-family: din-condensed, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header {
  text-align: center;
  padding: 20px 0;
}

.header .logo {
  width: 400px;
  max-width: 100%;
}

.main, footer {
  margin: 0 auto;
  width: 80%;
}

.content {
  width: 100%;
}

.markdown {
  margin: 0 20%;
  width: 60%;
  padding: 0 20px;
}

.markdown h3 {
  font-style: italic;
  padding-bottom: 30px;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}

.markdown p {
  padding-bottom: 34px;
  line-height: 30px;
  font-size: 18px;
}

.markdown a {
  text-decoration: none;
  background: #d4fbf7;
}

.markdown a:hover {
  border-bottom: 2px solid;
}

.markdown figure {
  text-align: center;
  padding-bottom: 20px;
}

.markdown img {
  max-width: 100%;
  max-height: 500px;
  border-radius: 10px;
}

.gallery {
  column-count: 2;
  width: 90%;
  margin: 0 5%;
  column-gap: 10px;
}

.gallery img{
  width: 100%;
}

.single-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px;
  padding-bottom: 80px;
  grid-auto-flow: dense;
}

.single-gallery img {
  width: auto;
  max-width: 100%;
  grid-row: span 1;
}  

.single-gallery img.w {
  grid-column: span 2;
}

.page-title {
  padding: 30px 10px;
  border-top: 2px solid #EEE;
  font-family: fairwater-solid-serif, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 38px;
  text-align: center;
}

.page-subtitle {
  border: none;
  padding-top: 10px;
  text-align: center;
  font-family: din-condensed, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 22px;
  color: #232323;
}

.page-location {
  color: #666;
  font-family: din-condensed, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: normal;
  font-weight: 400;
  padding: 10px 5px;
  text-align: center;
}

.page-date {
  color: #BBB;
}

.page-content {
  padding-top: 30px;
  width: 60%;
  margin: 20px 20%;
  font-size: 18px;
  line-height: 190%;
  text-align: center;
}

.page-content:after {
  content: "—";
  text-align: center;
}

.page-content em {
  font-style: italic;
}

footer {
  border-top: 2px solid #EEE; 
  padding-top: 10px;
  margin-top: 20px;
  margin-bottom: 30px;
  line-height: 20px;
  font-size: 12px;
  text-align: center;
  color: #BBB;
}

footer p {
  width: 50%;
  margin: 0 auto;
  font-style: italic;
}

footer a {
  border-bottom: 1px solid;
  text-decoration: none;
}

footer .copyright {
  font-style: normal;
  padding-top: 10px;
  font-family: din-condensed, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #222;
  font-size: 14px;
}

footer img {
  width: 84px;
}

@media only screen and (max-width: 769px) {
  .main, footer {
    width: 100%;
  }

  .header .logo {
    max-width: 80%;
  }

  .markdown {
    margin: 0 5%;
    width: 90%;
  }

  .gallery {
    column-count: 1;
    width: 94%;
    margin: 0 3%;
  }

  .single-gallery img {
    padding-bottom: 0;
    margin: 0 auto;
    grid-column: span 2;
  }

  footer p {
    width: 80%;
  }
}