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

html {
    background: var(--background-color);
    color: var(--text-color);
    scroll-padding-top: 80px;
}

body {
    margin: 0;
    font-family: var(--font-body);
}

::selection {
    background: var(--primary-color);
    color: #ffffff;
}