/*
    Global element rules only. Shell, components, and page detail live elsewhere.
*/

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at top, #101821 0%, var(--bg) 58%);
    color: var(--text-main);
    font-family: Arial, Helvetica, sans-serif;
}

body {
    overflow-x: auto;
}

button,
a {
    font: inherit;
}
