*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    min-height: 100vh;
    line-height: var(--leading-normal);
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    font-size: var(--text-base);
}
h1, h2, h3, h4, h5, h6 {
    line-height: var(--leading-snug);
    letter-spacing: var(--tracking-tight);
    text-wrap: balance;
}
p { text-wrap: pretty; }
a { color: inherit; text-decoration-skip-ink: auto; }
img, picture, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
table { border-collapse: collapse; }
