/* Explain: Base reset and global styles 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: var(--primary-color);
    color: var(--wine-color);
}

button,
a {
    cursor: pointer;
}

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

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

[x-cloak] {
    display: none !important;
}
