:root {
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.48);
  --brand-dark: #6ddd59;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Circular Std", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -20%, rgba(109, 221, 89, 0.18), transparent 38%),
    linear-gradient(180deg, #063f24 0%, #022817 42%, #000000 100%);
}
