@font-face {
  font-family: "HelvMono";
  src: url("/fonts/HelveticaMono.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "HelvMono";
  src: url("/fonts/HelveticaMonoBd.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "HelvMono";
  src: url("/fonts/HelveticaMonoObl.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "HelvMono";
  src: url("/fonts/HelveticaMonoBdObl.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #666;
  font-family: "HelvMono", monospace;
  font-size: 10px;
  line-height: 1.6;
  text-transform: lowercase;
}

.container {
  max-width: 444px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

h1 {
  font-size: 12px;
  font-weight: 600;
  color: #aaa;
  margin-bottom: 2rem;
}

h2 {
  font-size: 12px;
  font-weight: 600;
  color: #aaa;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 10px;
  font-weight: 600;
  color: #aaa;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

ul {
  list-style: none;
}

ul li {
  margin-bottom: 0.4rem;
  color: #666;
}

ul li .book-title {
  color: #aaa;
}

ul li .book-author {
  color: #666;
}

ul li .book-note {
  color: #555;
}

p {
  color: #666;
}

a {
  color: #666;
  text-decoration: none;
}

a:hover {
  color: #aaa;
}

.center-page {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.symbol {
  font-size: 12px;
  color: #666;
}

.orbit-letter {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 10px;
  color: #666;
  animation: orbit 20s linear infinite;
  animation-delay: calc(var(--i) * -2.222s);
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateY(-60px) rotate(0deg) translate(-50%, -50%);
  }
  to {
    transform: rotate(-360deg) translateY(-60px) rotate(360deg) translate(-50%, -50%);
  }
}

.container:has(.post-content) {
  max-width: 666px;
}

.post-content p {
  margin-bottom: 1rem;
}

.post-content blockquote {
  border-left: 1px solid #444;
  padding-left: 1rem;
  color: #555;
  margin: 1rem 0;
}

.post-content code {
  background: #111;
  padding: 0.1rem 0.3rem;
  font-size: 10px;
  text-transform: none;
}

.post-content pre {
  background: #111;
  padding: 1rem;
  overflow-x: auto;
  margin: 1rem 0;
  text-transform: none;
}

.post-content pre code {
  background: none;
  padding: 0;
}
