@font-face {
  font-family: "Quattro";
  src: url('https://vreeman.xyz/font/iAWriterQuattroS-Regular.eot');
  src: url('https://vreeman.xyz/font/iAWriterQuattroS-Regular.eot') format('embedded-opentype'),
       url('https://vreeman.xyz/font/iAWriterQuattroS-Regular.woff2') format('woff2'),
       url('https://vreeman.xyz/font/iAWriterQuattroS-Regular.woff') format('woff');
}
@font-face {
  font-family: "QuattroBold";
  src: url('https://vreeman.xyz/font/iAWriterQuattroS-Bold.eot');
  src: url('https://vreeman.xyz/font/iAWriterQuattroS-Bold.eot') format('embedded-opentype'),
       url('https://vreeman.xyz/font/iAWriterQuattroS-Bold.woff2') format('woff2'),
       url('https://vreeman.xyz/font/iAWriterQuattroS-Bold.woff') format('woff');
}
@font-face {
  font-family: "QuattroItalic";
  src: url('https://vreeman.xyz/font/iAWriterQuattroS-Italic.eot');
  src: url('https://vreeman.xyz/font/iAWriterQuattroS-Italic.eot') format('embedded-opentype'),
       url('https://vreeman.xyz/font/iAWriterQuattroS-Italic.woff2') format('woff2'),
       url('https://vreeman.xyz/font/iAWriterQuattroS-Italic.woff') format('woff');
}
@font-face {
  font-family: "QuattroBoldItalic";
  src: url('https://vreeman.xyz/font/iAWriterQuattroS-BoldItalic.eot');
  src: url('https://vreeman.xyz/font/iAWriterQuattroS-BoldItalic.eot') format('embedded-opentype'),
       url('https://vreeman.xyz/font/iAWriterQuattroS-BoldItalic.woff2') format('woff2'),
       url('https://vreeman.xyz/font/iAWriterQuattroS-BoldItalic.woff') format('woff');
}
@font-face {
  font-family: "Mono";
  src: url('https://vreeman.xyz/font/iAWriterDuoS-Regular.eot');
  src: url('https://vreeman.xyz/font/iAWriterDuoS-Regular.eot') format('embedded-opentype'),
       url('https://vreeman.xyz/font/iAWriterDuoS-Regular.woff2') format('woff2'),
       url('https://vreeman.xyz/font/iAWriterDuoS-Regular.woff') format('woff');
}

:root {
  color-scheme:dark light;
  --b:#16161d;
  --w:#cecece;
  --lb:#06c;
  --db:#2997ff;
  accent-color:var(--db);
}
:target {
  scroll-margin-top: 100px;
  scroll-snap-margin-top: 100px;
}
*,::after,::before {
  color: var(--b);
}
::marker {
  color:var(--db);
}
html {
  overflow-x:hidden;
  overflow-y:scroll;
  scroll-behavior:smooth;
  text-size-adjust:100%;
  -webkit-overflow-scrolling:touch;
  -ms-overflow-style:scrollbar;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
  hanging-punctuation: first allow-end last;
}
body {
  max-width: 40rem;
  margin: 1% auto;
  padding: 0 3%;
  color: var(--b);
  font:1.125em/1.6 "Quattro", ui-monospace,SFMono-Regular,"SF Mono",Menlo,Monaco,Consolas,"Roboto Mono","Liberation Mono","Courier New",monospace;
  word-break: break-word;
  overflow-wrap: break-word;
  text-wrap: pretty;
}
header, nav, main, aside {
  border-bottom:  1px solid var(--b);
}
header {

}
nav {

}
footer {
  font-size: 80%;
}
section {
  border: 1px solid var(--w);
  border-radius: 6px;
  padding: 0 10px;
  margin: 10px 0;
}
section:hover {
  border-color: Gainsboro;
}

nav > ul > li {
/* display: inline;*/
}

h1, h2, h3, h4, h5 {
  text-wrap: balance;
}
blockquote {
  margin: 0;
}
a {
  text-decoration:underline;
  text-decoration-color:var(--db);
}
a:hover {
  text-decoration-color:var(--lb);
}
ul {
  list-style: disc;
}
cite::before {
  content: "- ";
  color:var(--db);
}
strong, b {
  font-family: "QuattroBold";
  font-weight: 700;
  font-style: normal;
}
em, i {
  font-family: "QuattroItalic";
  font-style: italic;
}
code {
  font-family: "Mono", ui-monospace,SFMono-Regular,"SF Mono",Menlo,Monaco,Consolas,"Roboto Mono","Liberation Mono","Courier New",monospace;
}
img {
  margin: 0 auto;
  max-width: 100%;
}

@media (prefers-color-scheme: dark) {
  *,::after,::before {
    color: var(--w);
  }
  ::marker {
    color:var(--lb);
  }
  body {
    background: var(--b);
  }
  header, nav, main, aside {
    border-bottom:  1px solid var(--w);
  }
  section:hover {
    border-color: var(--lb);
    border-color: Gainsboro;
  }
  a {
    text-decoration-color:var(--lb);
  }
  a:hover {
    text-decoration-color:var(--db);
  }
  cite::before {
    color:var(--lb);
  }
}