/* Explain: Base reset and typography defaults for the locksmith landing page */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text-color);
    background: var(--background-color);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

button,
a,
input {
    font: inherit;
}

a {
    text-decoration: none;
}

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