/* Explain: Base styles, reset, and typography for the website. - */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    text-rendering: optimizeLegibility;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--background-color);
}

::selection {
    background: color-mix(in srgb, var(--primary-color) 20%, transparent);
    color: var(--charcoal-color);
}

button,
a {
    cursor: pointer;
}

input,
button,
textarea,
select {
    font: inherit;
}

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}