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

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

body {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--sage-color) 20%, transparent), transparent 34rem),
        radial-gradient(circle at bottom right, color-mix(in srgb, var(--primary-color) 12%, transparent), transparent 32rem),
        var(--background-color);
}

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

button,
a {
    cursor: pointer;
}

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

:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--primary-color) 58%, transparent);
    outline-offset: 3px;
}
