html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #efebdf;
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  padding: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-shell {
  max-width: 900px;
  margin: 0 auto;
}

h1 {
  font-family: "utopia-std-display", "Georgia", serif;
  font-size: 45px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 12px;
}

h2,
.heading {
  font-family: "utopia-std-display", "Georgia", serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.2;
  margin: 32px 0 8px;
}

h3 {
  font-family: "utopia-std-display", "Georgia", serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  margin: 24px 0 8px;
}

h4#name {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 16px;
}

p {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 1.65;
  text-align: left;
}

p + p {
  margin-top: 16px;
}

a {
  color: #185a9c;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: underline;
}

blockquote {
  border-left: 3px solid #ccc;
  color: #706b65;
  line-height: 1.65;
  margin: 16px 0;
  padding-left: 16px;
}

ul,
ol {
  line-height: 1.5;
  list-style: none;
}

.primary-name {
  display: inline;
}

.dateline,
.date,
.empty-note,
.splash-copyright {
  color: #706b65;
}

.site-header {
  margin-bottom: 16px;
}

.splash-container {
  margin: 0 auto;
}

.splash-layout {
  display: grid;
  gap: 1rem 2rem;
  grid-template-columns: 200px 1fr;
  grid-template-rows: auto auto auto;
}

.splash-photo {
  grid-column: 1;
  grid-row: 1;
  margin-top: 0.5rem;
  width: 200px;
}

.splash-nav {
  display: flex;
  flex-direction: column;
  grid-column: 1;
  grid-row: 2;
}

.splash-nav a {
  display: block;
}

.splash-content {
  grid-column: 2;
  grid-row: 1 / 4;
}

.splash-content p {
  margin-bottom: 1rem;
}

.splash-content p:last-child {
  margin-bottom: 0;
}

.splash-copyright {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  grid-column: 1;
  grid-row: 3;
  margin-top: 1rem;
}

.section {
  margin-top: 15px;
}

.flex-content-block {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.content-list > li > p {
  line-height: 26px;
  margin: 0;
  padding-top: 5px;
  text-align: left;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}

#post {
  max-width: 600px;
  min-height: 300px;
}

#post > p,
#post > h3 {
  max-width: 600px;
}

#post > ul,
#post > ol {
  line-height: 1.6;
  list-style: disc;
  margin: 16px 0 16px 24px;
  max-width: inherit;
  text-align: left;
}

#post > ol {
  list-style: decimal;
}

#post > ul > li + li,
#post > ol > li + li {
  margin-top: 8px;
}

#post > pre {
  font-family: "SF Mono", ui-monospace, "Monaco", "Cascadia Code", "Consolas", monospace;
  font-size: 0.8em;
  margin: 16px 0;
  overflow-x: auto;
}

#post code {
  font-family: "SF Mono", ui-monospace, "Monaco", "Cascadia Code", "Consolas", monospace;
}

#post hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 32px 0;
  width: 600px;
}

#footer {
  color: #706b65;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  margin-top: 48px;
}

#footer a {
  color: #000;
}

@media (max-width: 800px) {
  .footer-nav {
    gap: 16px;
  }
}

@media (max-width: 667px) {
  body {
    padding: 24px;
  }

  h1 {
    font-size: 42px;
  }

  .splash-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .splash-photo {
    margin-bottom: 1.5rem;
    order: 1;
    width: 260px;
  }

  .splash-content {
    margin-bottom: 1.5rem;
    order: 2;
  }

  .splash-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 1.5rem;
    order: 3;
  }

  .splash-nav a {
    display: inline;
  }

  .splash-copyright {
    margin-top: 0;
    order: 4;
  }

  #post,
  #post > p,
  #post > h3,
  #post hr {
    max-width: 100%;
    width: 100%;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #2d3139;
    color: #e8e8e8;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    color: #e8e8e8;
  }

  a {
    color: #6ba3d6;
  }

  a:hover {
    color: #e8e8e8;
  }

  blockquote {
    border-left-color: #4a4f5a;
    color: #a0a0a0;
  }

  .dateline,
  .date,
  .empty-note,
  .splash-copyright,
  #footer {
    color: #a0a0a0;
  }

  #footer a {
    color: #e8e8e8;
  }

  #post hr {
    border-top-color: #4a4f5a;
  }
}
