/* Explain: Base reset and typography defaults for the site, including scroll margin adjustments. - */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: 6rem;
}

body {
    overflow-x: hidden;
}
