:root {
  --bg: #12100e;
  --bg-soft: #1c1916;
  --street: #26211c;
  --ink: #f4efe7;
  --ink-dim: #b7ada0;
  --line: #3a342c;
  --accent: #ff5a3c;
  --accent-2: #22d3ee;
  --accent-3: #a3e635;
  --gold: #f5c451;
  --radius: 14px;
  --maxw: 720px;
  --font:
    "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --graffiti: "Impact", "Haettenschweiler", "Arial Narrow Bold", var(--font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

img,
canvas,
audio,
video {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent-2);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--ink);
}

h1,
h2,
h3 {
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.01em;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}
