@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200..900&display=swap");
* {
  box-sizing: border-box;
}

@media (min-width: 50rem) {
  body {
    max-width: min(45rem, 100% - 18rem);
    font-size: larger;
  }
}
body {
  font-family: Noto Serif KR, sans-serif;
  max-width: calc(100% - 4rem);
  margin: auto;
  padding: 1em;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #1a1a1a;
    color: #e4e4e4;
  }
  body a:link {
    color: #7da3db;
  }
  body a:visited {
    color: #9b9b9b;
  }
}
body p {
  margin-bottom: 1.25rem;
}
body a {
  color: #0066cc;
  text-decoration: none;
}
body a:hover {
  text-decoration: underline;
}
body hr {
  border: none;
  height: 1px;
  background-color: #eee;
  margin: 2rem 0;
}
@media (prefers-color-scheme: dark) {
  body hr {
    background-color: #444;
  }
}
body.list {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
body.list .year-section {
  margin-bottom: 3rem;
}
body.list .year-section .month-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.list .year-section .month-section ul li {
  margin-bottom: 0.75rem;
}
body.list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.list ul li {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
}
body.list ul li a {
  font-weight: 500;
  margin-bottom: 0.25rem;
}
body.list ul .languages,
body.list ul time {
  font-size: small;
  color: #666;
}
@media (prefers-color-scheme: dark) {
  body.list ul .languages,
  body.list ul time {
    color: #999;
  }
}
body.list ul .languages:before,
body.list ul time:before {
  content: "—";
  margin-right: 0.5rem;
}
body.list ul .languages a,
body.list ul time a {
  text-decoration: none;
}
body.list ul .languages a:before,
body.list ul time a:before {
  content: "· ";
  cursor: default;
}
body.list ul .languages a:first-child:before,
body.list ul time a:first-child:before {
  content: "";
}
body.post {
  max-width: 45rem;
  margin: 0 auto;
  padding: 2rem 1rem;
  position: relative;
}
body.post img {
  max-width: 100%;
}
body.post .post-header {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
body.post .post-header .publish-date {
  font-size: 0.85rem;
  color: #666;
  font-weight: 300;
}
@media (prefers-color-scheme: dark) {
  body.post .post-header .publish-date {
    color: #999;
  }
}
@media (max-width: 768px) {
  body.post .post-header .publish-date {
    position: static;
    display: block;
    text-align: right;
    margin-bottom: 1rem;
  }
}
body.post .post-meta {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #666;
}
@media (prefers-color-scheme: dark) {
  body.post .post-meta {
    border-top-color: #444;
    color: #999;
  }
}
body.post .post-meta p {
  margin: 0.5rem 0;
}
body.post pre {
  background: #f8f8f8;
  padding: 1rem;
  border-radius: 4px;
  overflow-x: auto;
}
@media (prefers-color-scheme: dark) {
  body.post pre {
    background: #2d2d2d;
  }
}
body.post code {
  background: #f8f8f8;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-size: 0.9em;
}
@media (prefers-color-scheme: dark) {
  body.post code {
    background: #2d2d2d;
  }
}
body.post pre code {
  background: none;
  padding: 0;
}
body.post blockquote {
  border-left: 3px solid #ddd;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  color: #666;
}
@media (prefers-color-scheme: dark) {
  body.post blockquote {
    border-left-color: #444;
    color: #999;
  }
}
body header {
  margin-bottom: 2rem;
}
body header nav {
  margin-bottom: 1rem;
}
body header nav .home-link {
  color: #666;
  font-size: 0.9rem;
  text-decoration: none;
}
body header nav .home-link:hover {
  text-decoration: underline;
}
@media (prefers-color-scheme: dark) {
  body header nav .home-link {
    color: #999;
  }
}
body footer {
  margin-top: 3rem;
  text-align: center;
}
body footer .navigation {
  margin-top: 2rem;
}
body footer .navigation .back-to-list {
  color: #0066cc;
  text-decoration: none;
}
body footer .navigation .back-to-list:hover {
  text-decoration: underline;
}
body footer p {
  color: #666;
  font-size: 0.9rem;
}
@media (prefers-color-scheme: dark) {
  body footer p {
    color: #999;
  }
}
@media (max-width: 768px) {
  body {
    padding: 1rem;
  }
}