:root {
  --bg: #050505;
  --card: #111214;
  --card2: #17191c;
  --text: #f4f4f4;
  --muted: #9b9b9b;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
}

button {
  font: inherit;
  cursor: pointer;
}

h1, h2, h3, h4, p {
  margin: 0;
}

.label,
.muted {
  color: var(--muted);
  font-size: 13px;
}