/* xinixtrucking — starter stylesheet. Edit freely. */
:root {
  color-scheme: light dark;
  --fg: oklch(0.2 0 0);
  --bg: oklch(0.98 0 0);
}
body {
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--fg);
  background: var(--bg);
  margin: 0;
  padding: 0;
}
.container {
  max-width: 65ch;
  margin: 4rem auto;
  padding: 0 1rem;
}
h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-block: 0 1rem;
}
p {
  line-height: 1.6;
  margin-block: 0 1rem;
}
code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.9em;
  background: color-mix(in oklch, var(--fg) 8%, transparent);
  padding: 0.1em 0.3em;
  border-radius: 0.2em;
}
