body {
  font-family: "Palatino Linotype", "Palatino", "Georgia", "Times New Roman", serif;
  margin: 0 auto;
  max-width: 700px;
  min-width: 0;
  padding: 0 10px 25px;

  background-color: #bddaeb;
  color: #2b2420;

  display: grid;
  row-gap: 5px;
  grid-template-columns: auto auto;
  grid-template-rows: 60px auto;
  grid-template-areas:
    "header nav"
    "ct ct"
}

header {
  margin: 0;
  font-size: 23px;

  grid-area: header;
  justify-self: left;
  align-self: end;
}

nav {
  font-size: 18px;

  grid-area: nav;
  justify-self: right;
  align-self: end;
}

nav a {
  margin-left: 20px;
  text-align: right;
}

article {
  font-size: 18px;

  grid-area: ct;
  background-color: #f5f0e8;
  padding: 30px 50px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  border-top: none;
  position: relative;
}

article::before {
  content: "— ✦ —";
  display: block;
  text-align: center;
  color: #a08060;
  font-size: 14px;
  letter-spacing: 0.3em;
  margin-bottom: 0.5em;
}

a {
  color: #8b5e3c;
}

h1, h2, strong {
  color: #2b2420;
}

h1 {
  font-size: 24px;
  font-weight: normal;
  font-variant: small-caps;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 1.5em 0 2em;
}

h2 {
  font-size: 20px;
  font-variant: small-caps;
  letter-spacing: 0.03em;
}

p {
  text-align: justify;
  line-height: 1.5;
  text-indent: 1.5em;
  margin: 0.4em 0;
}

article > p:first-of-type {
  text-indent: 0;
  font-size: 18px;
}


@media screen and (max-width: 430px) {
  body {
    grid-template-columns: auto;
    grid-template-rows: minmax(40px,auto) minmax(30px,auto) auto;
    grid-template-areas:
    "header"
    "nav"
    "ct"
  }

  article {
    padding: 15px 20px;
  }

  header, nav {
    justify-self: center;
    text-align: center;
  }
  nav a {
    margin: 0 10px;
  }
}
