body {
  margin: 0 auto;
  max-width: 790px;
  min-width: 0;
  background-color: #f6f6ef;

  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #111;

  letter-spacing: 1px;

  display: grid;
  row-gap: 10px;
  grid-template-columns: auto;
  grid-template-rows: 75px auto;
  grid-template-areas:
    "nav"
    "article"
}

h1 {
  font-size: 36px;
}

h2 {
  padding-top: 1em;
  font-size: 25px;
  font-weight: 600;
    text-align: center;
}

h3 {
  font-size: 19px;
  font-weight: 400;
}

ul {
    list-style: none;
    padding-left: 0px;
}
ul li {
    position: relative;
    padding-left: 40px;
    padding-top: 0.5em;
}

ul li::before {
  content: "—";
  position: absolute;
  left: 0;
}

li {
  font-size: 16px;
  font-weight: 200;
}

nav {
  font-size: 20px;
  letter-spacing: 2px;

  grid-area: nav;
  justify-self: right;
  align-self: end;
}

a {
  text-decoration: underline;
  color: #9ab561;
}

a:hover {
  text-decoration: underline;
  color: #728940;
}

nav a {
  text-align: right;
  padding-left: 12px;
  padding-right: 12px;
}

span {
 display: inline-block;
 width: 0;
 height: 15px;
 border-left: 1px solid #999;
}

article {
  grid-area: article;
  border-top: 2px dotted  #999;
}
