/* Popup styles for <sup> info */
.popup {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  padding: 0.7em 1em;
  font-size: 0.95em;
  z-index: 100;
  color: #222;
}
.popup.active {
  display: block;
}
.sup-popup {
  position: relative;
  cursor: pointer;
}
body[a=dark] {
  filter: invert(1);
}
body[a=dark] img {
  filter: invert(1);
}
body[a=dark] img.ioda {
  filter: invert(0);
}

@media (prefers-color-scheme: dark) {
  body[a=auto] {
    filter: invert(1);
  }
  body[a=auto] img {
    filter: invert(1);
  }
  body[a=auto] img.ioda {
    filter: invert(0);
  }
}
html, body {
  background: black;
}

html {
  height: 100%;
}

body {
  color: white;
  background-image: url(bg.gif);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: monospace;
  font-size: 1rem;
  line-height: 1.3;
  margin: 0;
  min-height: 100%;
}

.post-meta {
  text-align: right;
}

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

hr {
  margin: 2rem 0;
}

p {
  margin: 1rem 0;
}

a {
  color: hotpink;
}

ul {
  padding-left: 1rem;
}

li {
  margin: 0.4rem 0;
}

*:target {
  background: yellow;
}

.w {
  width: fit-content;
  max-width: 670px;
  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: medium solid #b04b62;
  border-collapse: collapse;
  padding: 0.4rem;
}

code {
  color: black;
  background: white;
}

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;
  font-size: 0.7rem;
}
blockquote p {
  margin: 0;
}

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

.home-thumb {
  object-fit: cover;
  width: 200px;
  height: 200px;
}

.item-columns {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
}

.item-left {
  flex: 1 1 auto;
  width: 40%;
  flex-flow: row;
  align-content: center;
}

.item-right {
  flex: 1 1 auto;
  width: 50%;
  display: flex;
  flex-flow: row;
  justify-content: right;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  width: 100%;
}

.gridcontainer {
  flex: 1 1 auto;
  margin: 3%;
  text-align: center;
  min-width: 600px;
}

.item-grid {
  flex: 1 1 auto;
  display: flex;
  flex-flow: row;
}

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