:root {
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;

  --bg-900: #07121a;
  --bg-800: #0f1f2b;
  --bg-700: #153141;
  --surface-1: #112636;
  --surface-2: #17384d;
  --line: #2a536c;
  --text-1: #e8f3fb;
  --text-2: #a7c2d3;
  --brand: #15c2a3;
  --brand-2: #ffc857;
  --danger: #ff6b6b;
  --ok: #63e6be;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-1: 0 14px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-1);
  background: var(--bg-900);
}

a {
  color: inherit;
  text-decoration: none;
}
