body {
  --main-color: #000000;
  --secondary-color: #ffffff;
  margin: 0;
  padding-bottom: 12px;
  background: var(--secondary-color);
  overflow-wrap: anywhere;
}
pre {
  white-space: pre-wrap; 
}
@media (prefers-color-scheme: dark) {
  body {
    /* --main-color: #fc54d4; */
    --main-color: #ffa825;
    --secondary-color: black;
  }
}
input, textarea, button {
  all: unset;
}
* {
  margin-top: 1em;
  margin-bottom: 1em;
  line-height: 1.5em;
  color: var(--main-color);
  font-size: 16px;
  font-family: Fira Code, monospace;
  text-decoration: none;
}
:not(p) > a, button, input, textarea {
  margin: 0;
  display: inline-block;
  border: 1px dashed currentColor;
  border-radius: 4px;
  padding: 1px 6px;
}
p > a {
  border: 0;
  border-bottom: 1px dashed currentColor;
}
a:hover, button:hover,
a:focus, button:focus,
input:hover, textarea:hover,
input:focus, textarea:focus  {
  border-style: solid;
}
textarea {
  width: 100%;
  max-width: 300px;
  min-height: 150px;
  margin-top: 0.5em;
  resize: vertical;
}
button {
  cursor: pointer;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: 400;
}
h1:before {
  content: "# ";
}
h2:before {
  content: "## ";
}
h3:before {
  content: "### ";
}
img {
  max-width: 100%;
  height: auto;
}
body > * {
  max-width: 40em;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.5em;
}
nav a:not(:last-child),
footer a:not(:last-child) {
  margin-right: 1em;
}
footer {
  margin-top: 2em;
  text-align: center;
}
h1 ~ article,
.comments > div {
  margin-top: 1em;
  margin-bottom: 1em;
  border: 1px dashed currentColor;
  border-radius: 4px;
  padding: 0.7em 1em;
}
h1 ~ article > *,
.comments > div > * {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}
p.meta {
  font-style: italic;
}
::selection {
  background-color: var(--main-color);
  color: var(--secondary-color);
}
::placeholder {
  color: var(--main-color);
  opacity: 0.5;
}
blockquote {
  margin-left: 0;
  margin-right: 0;
  padding-left: 25px;
  border-left: 4px solid;
}
span[title] {
  border-bottom: 1px dashed;
}
