:root {
  --c1: #fc0;
  --c2: #0aa;
  font-size: 14pt;
  /* font-family: monospace; */
}

* {
  color: #fff;
  background: #000;
}

body {
  margin: 0 auto;
  padding: 100px 50px;
  max-width: 900px;
}

a {
  text-decoration: underline 1px;
  color: var(--c1);
}

article {
  display: inline-block;
  text-align: center;
  width: 200px;
  margin-right: 20px;
}

h1,
h2 {
  font-size: inherit;
  margin: 50px 0;
}

h1::before {
  color: var(--c1);
  content: '# ';
}

h2::before {
  color: var(--c2);
  content: '## ';
}

i::before,
i::after {
  content: '_';
}

ul {
  list-style: '* ';
}

li::marker {
  color: var(--c1);
}

table,
td {
  border: 1px dotted var(--c2);
}

blockquote {
  color: gray;
}

blockquote::before {
  content: '> ';
}

img {
  max-width: 80vw;
}

pre {
  overflow: scroll;
}

.logo {
  max-width: 300px;
  width: 100%;
}

.show {
  height: 200px;

  @media (max-width: 900px) {
    height: 100px;
  }
}
