body {
  background-color: #080808;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.container {
  max-width: 672px;
  margin: 32px 16px 64px 16px;

  & > header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.nav {
  display: flex;
  align-items: center;

  & .nav-link {
    color: rgb(156 163 175);
    text-decoration: none;
    margin-right: 16px;
  }

  & .nav-link:hover {
    color: rgb(209 213 219);
  }
}

.page-heading {
  line-height: 2.5rem;
  margin-top: 32px;
  margin-bottom: 16px;
  color: rgb(243 244 246);
  font-weight: 500;
  font-size: 2rem;
}

.page-subheading {
  line-height: 2rem;
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 24px;
  margin-bottom: 12px;
  color: rgb(243 244 246);
}

.post-item {
  margin-top: 24px;

  & .post-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 8px;

    & .post-title-link {
      text-decoration: underline;
      text-decoration-color: rgb(243 243 246 / 30%);
      color: rgb(243 244 246);
    }

    & .post-title-link:hover {
      color: rgb(209 213 219);
      text-decoration-color: rgb(209 213 219 / 50%);
    }
  }

  & .post-date {
    color: rgb(156 163 175);
  }
}

.post-page {
  & .post-date {
    color: rgb(156 163 175);
    margin: 16px 0;
  }
}

@media screen and (min-width: 768px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
}

.markdown-body img {
  border-radius: 4px;
  margin-bottom: 4px;
}

pre.language-javascript {
  margin: 1em 0 !important;
}

pre.language-bash {
  margin: 1em 0 !important;
}

.copy-to-clipboard-button[data-copy-state="copy"] {
  cursor: pointer;
}
