
:root {
  --primary: #0052cc;
  --secondary: #0b1f44;
  --text: #1a1a1a;
  --bg: #ffffff;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
}

button {
  border-radius: var(--radius);
  cursor: pointer;
}

:root{
  /* COLORS */
  --blue:#2f6bff;
  --bg-dark:#0b0d10;
  --bg-light:#ffffff;
  --text-dark:#0b0d10;
  --text-light:#ffffff;
  --text-muted:#bbbbbb;

  /* TYPOGRAPHY */
  --font:'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* BUTTONS */
  --btn-radius:2px;
  --btn-border:2px;
}
