:root {
  --paper: #faf7f0;
  --ink: #2b2620;
  --measure: 38rem;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-header {
  padding: 1.75rem 2rem;
}

.site-name {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}

.site-name:hover {
  text-decoration: none;
}

.site-main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  padding-top: 25vh;
}

.welcome {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  max-width: var(--measure);
}

.site-footer {
  padding: 1.75rem 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: #6b6358;
}

.site-footer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.site-footer .sep {
  margin: 0 0.6em;
}

.page {
  max-width: var(--measure);
  margin: 0 auto;
  padding-top: 2rem;
}

.page-title {
  font-weight: 500;
  margin-bottom: 1rem;
}

