*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html, body { height: 100%; }
body {
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    overflow: hidden;
    overscroll-behavior: none;
    background: #000;
}

img, picture, svg { display: block; max-width: 100%; }

button, input, textarea, select {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
}

button { cursor: pointer; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

:focus { outline: none; }
:focus-visible {
    outline: 2px solid var(--phosphor-bright);
    outline-offset: 2px;
}
