:root {
  color: #222;
  background: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  max-width: 46rem;
  padding: 2.25rem 1.25rem 3rem;
}

a {
  color: #1d5f8c;
}

a:hover {
  color: #124260;
}

.site-header {
  align-items: baseline;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 4.5rem;
}

.site-title {
  color: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 0.85rem;
}

nav a, footer a {
  color: #666;
  font-size: 0.9rem;
}

h1, h2, h3 {
  color: #151515;
  line-height: 1.2;
  margin: 2.3rem 0 1rem;
}

h1 {
  font-size: 2rem;
  margin-top: 0;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1.12rem;
}

p, ul, ol, blockquote, pre {
  margin: 0 0 1.25rem;
}

li + li {
  margin-top: 0.35rem;
}

time, .eyebrow {
  color: #777;
  font-size: 0.9rem;
}

.eyebrow {
  margin-bottom: 0.7rem;
}

.eyebrow a {
  color: inherit;
}

.intro {
  margin-bottom: 2rem;
}

.intro > :last-child {
  margin-bottom: 0;
}

.intro + section > h1 {
  margin-top: 0;
}

.post header {
  margin-bottom: 2.25rem;
}

.post header h1 {
  margin-bottom: 0.45rem;
}

.post img {
  display: block;
  height: auto;
  margin: 1.75rem auto;
  max-width: 100%;
}

.post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-list li {
  align-items: baseline;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  margin: 0.8rem 0;
}

.post-list time {
  font-size: 0.84rem;
}

blockquote {
  border-left: 3px solid #ddd;
  color: #555;
  margin-left: 0;
  padding-left: 1rem;
}

code {
  background: #f3f3f3;
  border-radius: 0.2rem;
  font-size: 0.9em;
  padding: 0.1rem 0.28rem;
}

pre {
  background: #f3f3f3;
  border-radius: 0.35rem;
  overflow-x: auto;
  padding: 1rem 1.2rem;
}

pre code {
  background: transparent;
  padding: 0;
}

.pagination {
  justify-content: flex-start;
  margin-top: 2rem;
}

footer {
  border-top: 1px solid #eee;
  margin-top: 4rem;
  padding-top: 1.25rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    background: #181818;
    color: #e7e7e7;
  }
  h1, h2, h3 {
    color: #fff;
  }
  a {
    color: #8ac7f1;
  }
  a:hover {
    color: #b1ddfa;
  }
  nav a, footer a, time, .eyebrow {
    color: #aaa;
  }
  blockquote {
    border-color: #555;
    color: #bbb;
  }
  code, pre {
    background: #282828;
  }
  footer {
    border-color: #333;
  }
}
@media (max-width: 34rem) {
  body {
    padding-top: 1.5rem;
  }
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 3rem;
  }
}

/*# sourceMappingURL=main.css.map */