@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, serif;
  min-width: 500px;
}

.visually-hidden {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

header {
  background-image: repeating-linear-gradient(90deg, #dbdbdb 0 4px, #d2d2d2 4px 6px);
  border-bottom: 1px solid #ccc;
  overflow-x: hidden;
}
header div {
  align-items: center;
  box-shadow: inset 0 -10px 40px rgba(0, 0, 0, 0.25);
  color: rgb(80, 80, 80);
  display: flex;
  flex-direction: column;
  margin: 0 -20px;
  padding: 0 20px;
  text-shadow: 1px 1px 0px #eee;
}
header div a {
  color: inherit;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.025rem;
  font-weight: 200;
  margin: 20px 0;
  text-decoration: none;
}
header div h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 2rem;
}
header div ul {
  display: flex;
  list-style: none;
  padding: 20px 0 80px;
}
header div ul li {
  margin: 0 20px;
}
header div ul img {
  border: 5px solid #fff;
  box-shadow: 0 0 0 2px #aaa, 0 0 0 10px #333, 10px 10px 10px 2px rgba(0, 0, 0, 0.5);
}

main {
  display: grid;
  grid-template-columns: minmax(1.5rem, 1fr) minmax(auto, 60ch) minmax(1.5rem, 1fr);
  font-size: 1.025rem;
  line-height: 1.44;
  margin-top: -120px;
  padding: 0 0 5rem;
}
main * {
  font-family: Palatino, Garamond, Vollkorn, serif;
  grid-column: 2;
}
main p {
  margin-bottom: 2em;
}
main img + p {
  margin-top: -190px;
  padding-left: 195px;
}
main p::first-letter {
  color: #505050;
  font-family: Palatino, Garamond, Vollkorn;
  font-weight: 700;
  float: left;
  font-size: 520%;
  line-height: 48px;
  padding: 0 8px 0 0;
  margin: 6px 0 0 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
main footer {
  margin-top: 3rem;
}
main footer a {
  color: inherit;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.65rem;
  text-decoration: none;
}
main footer ul {
  display: flex;
  list-style: none;
}
main footer ul li {
  flex: 1 0 48%;
}
main footer ul li + li {
  text-align: right;
}
main footer ul .previous-post::before {
  content: "←";
  padding-right: 0.25em;
}
main footer ul .next-post::after {
  content: "→";
  padding-left: 0.25em;
}
