/* degenie.xyz — shared styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  background: #0a0a0a;
  color: #e8e8e8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 2rem;
  line-height: 1.6;
}
.wrap {
  max-width: 40rem;
  margin: 0 auto;
  width: 100%;
}
header.site {
  padding-bottom: 3rem;
}
nav.site {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}
nav.site a {
  color: #8a8a8a;
  border-bottom: none;
}
nav.site a:hover { color: #e8e8e8; }
nav.site a[aria-current="page"] { color: #e8e8e8; }
main {
  flex: 1;
}
h1 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
h2 {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 3rem;
  letter-spacing: 0.02em;
}
p {
  margin-top: 1rem;
  color: #8a8a8a;
  font-size: 0.9375rem;
}
p.lede { color: #e8e8e8; }
a {
  color: #e8e8e8;
  text-decoration: none;
  border-bottom: 1px solid #3a3a3a;
}
a:hover { border-bottom-color: #e8e8e8; }
ul.plain {
  list-style: none;
  margin-top: 1rem;
}
ul.plain li {
  color: #8a8a8a;
  font-size: 0.9375rem;
  padding: 0.75rem 0;
  border-top: 1px solid #1e1e1e;
}
ul.plain li:last-child { border-bottom: 1px solid #1e1e1e; }
.tag {
  color: #5a5a5a;
  font-size: 0.8125rem;
}
dl.meta {
  margin-top: 1rem;
  font-size: 0.875rem;
}
dl.meta dt {
  color: #5a5a5a;
  margin-top: 0.75rem;
}
dl.meta dd {
  color: #8a8a8a;
  margin-left: 0;
}
blockquote {
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 1px solid #3a3a3a;
  color: #8a8a8a;
  font-size: 0.9375rem;
}
code {
  font-family: inherit;
  color: #c8c8c8;
  background: #161616;
  padding: 0.1rem 0.3rem;
  border-radius: 2px;
  font-size: 0.875em;
}
footer.site {
  color: #5a5a5a;
  font-size: 0.8125rem;
  padding-top: 3rem;
}
footer.site a {
  color: #5a5a5a;
  border-bottom-color: #2a2a2a;
}
footer.site a:hover { color: #8a8a8a; }
