/* 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.65;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.015em;
    line-height: 0.98;
    text-transform: uppercase;
}

p, a, button, input, select, textarea, label, li {
    font-family: var(--font-body);
}

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

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