@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/JetBrainsMono-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/JetBrainsMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/JetBrainsMono-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "JetBrains Mono", monospace;
}

body {
  background: #0f0f0f;
  color: #e0e0e0;
  height: 100vh;
}

#thread {
  width: 100%;
  height: 100vh;
}

#thread[hidden] {
  display: none;
}

#site-nav {
  position: fixed;
  top: 16px;
  right: 20px;
  display: flex;
  gap: 20px;
  z-index: 100;
}

#site-nav a {
  color: #444;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

#site-nav a:hover {
  color: #888;
}
