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

body {
  background-color: #000;
  color: #aaa;
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

.comment,
.keyword,
.quote {
  color: #555;
}

.type {
  color: #aaa;
}

.highlight {
  color: #fff;
}

.indent {
  padding-left: 48px;
}

.cursor-line {
  margin-top: 16px;
}

.blink {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

section {
  padding: 16px 0;
}

.divider {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid #555;
}

.small {
  font-size: 13px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}