body[a=dark] {
  filter: invert(1);
}
body[a=dark] img, body[a=dark] iframe, body[a=dark] video {
  filter: invert(1);
}
body[a=dark] img.ioda, body[a=dark] iframe.ioda, body[a=dark] video.ioda {
  filter: invert(0);
}

@media (prefers-color-scheme: dark) {
  body[a=auto] {
    filter: invert(1);
  }
  body[a=auto] img, body[a=auto] iframe, body[a=auto] video {
    filter: invert(1);
  }
  body[a=auto] img.ioda, body[a=auto] iframe.ioda, body[a=auto] video.ioda {
    filter: invert(0);
  }
  html {
    background: black !important;
  }
}
html {
  height: 100%;
  background: white;
}

body {
  background: white;
  color: black;
  font-family: monospace;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  min-height: 100%;
  overflow-wrap: break-word;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body > .container {
  padding: 1rem;
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 800px) {
  body > .container {
    width: auto;
  }
}
body > .container > .main .featured .featured-post {
  display: block;
  position: relative;
  text-decoration: none;
}
body > .container > .main .featured .featured-post:visited {
  text-decoration: none;
}
body > .container > .main .featured .featured-post img {
  width: 100%;
}
body > .container > .main .featured .featured-post span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-size: 2rem;
  color: #000;
  font-weight: bold;
  text-align: right;
  z-index: 2;
}
body > .container > .main .featured .featured-post .overlay {
  background: linear-gradient(0deg, #fff, transparent);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
body > .container > .footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
body > .container > .footer .cc {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body > .container > .footer .cc span a {
  display: block;
}
.post-meta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

h2, h3, h4, h5, h6 {
  margin-top: 3rem;
}

hr {
  margin: 2rem 0;
}

p {
  margin: 1rem 0;
}

li {
  margin: 0.4rem 0;
}

*:target {
  background: yellow;
}

.w {
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

hr {
  text-align: center;
  border: 0;
}
hr:before {
  content: "/////";
}
hr:after {
  content: attr(data-content) "/////";
}

table {
  width: 100%;
}

table, th, td {
  border: thin solid black;
  border-collapse: collapse;
  padding: 0.4rem;
}

code {
  color: white;
  background: black;
}

div.highlighter-rouge code {
  display: block;
  overflow-x: auto;
  white-space: pre-wrap;
  padding: 1rem;
}

blockquote {
  font-style: italic;
  border: thin solid black;
  padding: 1rem;
}
blockquote p {
  margin: 0;
}

img, iframe, video {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 4rem 0 0 0;
}

.home {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.home .post .post-meta {
  margin: 0;
  justify-content: end;
  color: gray;
}

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