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

:root {
  --bg: #07090c;
  --s1: #0d1117;
  --s2: #131920;
  --s3: #182028;
  --b1: #1a2535;
  --b2: #1f2e40;
  --b3: #263548;
  --accent: #00E5B0;
  --accent2: #00b88d;
  --accent3: rgba(0, 229, 176, .08);
  --text: #d8e6f2;
  --muted: #506070;
  --muted2: #8090a0;
  --red: #e83838;
  --orange: #f97316;
  --yellow: #d4900a;
  --green: #22c55e;
  --blue: #2a7fd4;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Sora', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5
}
