:root {
    --color-bg: #000000;
    --color-surface-2: #1c1c1c;
    --color-heading: #ffffff;
    --color-accent: #ffc300;
}

html {
    box-sizing: border-box;
    min-width: 320px;
    background: #080b10;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-width: 320px;
    background: #080b10;
    color: var(--color-heading);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

img,
picture,
svg {
    max-width: 100%;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) transparent;
}
