html,
body {
  background: black;
  color: white;
  margin: 0;
  padding: 0;
}
html {
  background-image: url("/img/forest-bg.jpg");
  background-size: cover;
	background-attachment: fixed;
  overflow-y: scroll;
}
body {
  margin: 15px auto;
	padding: 15px 30px;
  max-width: 800px;
  width: calc(100vw - 30px);
  background-color: black;
}
header {
  text-align: center;
	height: 180px;
	position: relative;
	margin-bottom: 115px;
}
header > img {
	object-fit: cover;
	width: 100%;
	height: 100%;	
}
header > nav {
	font-size: 1.5em;
}
footer {
  text-align: center;
}

a {
  color: coral;
}
a:visited {
  color: orchid;
}

/* HOMEPAGE */
/* article list */
#articles > article {
  border-bottom: 1px dotted;
  margin-bottom: 45px;
  font-size: 1.5em;
}
/* article list title */
#articles > article > h2 {
  margin-bottom: 0;
}
/* article list date */
#articles > article > sub {
  display: block;
  margin: 15px 0;
}
/* article list image */
#articles > article > a {
  display: block;
  width: 100%;
  height: 180px;
}
#articles > article > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* article list summary */
#articles > article > summary {
  margin: 15px 0;
}
#articles > article > summary > a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding-bottom: 30px;
}

/* ARTICLE PAGE */
main > article {
  line-height: 1.5em;
  font-size: 1.5em;
}
main > article > h1 {
  font-size: 2em;
  text-align: center;
}

/* SINGLE PAGE */
main > section.page {
  line-height: 1.5em;
  font-size: 1.5em;
}
main > section.page > h1 {
  font-size: 2em;
  text-align: center;
}
