/* Explain: Base reset, typography defaults, smooth scroll, Alpine cloak */
* {
    box-sizing: border-box;
}

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

body {
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

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

::selection {
    background: var(--dusk);
    color: #fff;
}
