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

html {
    background: var(--background-color);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    line-height: 1.8;
    text-rendering: optimizeLegibility;
}

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

a {
    text-decoration: none;
}

button,
summary,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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