:root {
  font-family: serif;
  line-height: 1.6;
  --color-light: #e2e0cb;
  --color-orange: #de3a15;
  --color-muted-orange: #cf6346;
  --color-blue: #033a77;
  --color-black: #060705;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--color-black);
  /* background-color: var(--color-light); */
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  /* background-image: url("/static/bg.png"); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100vw 100vh;
  opacity: 0.25;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: monospace;
  color: var(--color-blue);
}

.site-header,
.site-main {
  max-width: 960px;
  margin: auto;
  margin-inline: auto;
}

.site-header {
  padding-block: 1.25rem;
}

.site-header__name {
  font-weight: 700;
}

.site-main {
  padding-block: 2rem 4rem;
}

.post {
  border-top: 1px solid var(--color-muted-orange);
}

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

.post-list__item + .post-list__item {
  margin-top: 2.5rem;
}

.post-list__title {
  margin-bottom: 0;
}

.post__content img {
  max-width: 100%;
  height: auto;
}

.post__content pre {
  overflow-x: auto;
  padding: 1rem;
}

.post__content table {
  border-collapse: collapse;
  width: 100%;
}

.post__content th,
.post__content td {
  border: 1px solid currentColor;
  padding: 0.4rem 0.6rem;
}
