/* Explain: Base reset and typography defaults with accent and primary color utility classes. - */
* {
    box-sizing: border-box;
}

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

body {
    overflow-x: hidden;
}

.text-accent {
    color: var(--accent-color);
}
.bg-accent {
    background-color: var(--accent-color);
}
.bg-primary {
    background-color: var(--primary-color);
}