/* Explain: Base reset, typography, selection, and motion defaults */
* {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

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

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

::selection {
    background: var(--bronze-color);
    color: var(--warm-ivory);
}

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

a {
    text-decoration: none;
}

button,
a,
select {
    cursor: pointer;
}

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

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