* { box-sizing: border-box; }
html, body { height: 100%; }
body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
}
a {
    color: rgb(150, 150, 200);
    text-decoration: none;
}
a:hover {
    color: rgb(50, 50, 100);
    text-decoration: none;
}
