/* ==========================================================================
   Base CSS - 프로젝트 기초
   ========================================================================== */

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

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: hsl(var(--st-line)) transparent;
}

html::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

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

html::-webkit-scrollbar-thumb {
    background-color: hsl(var(--st-line));
    border-radius: 3px;
}

html::-webkit-scrollbar-thumb:hover {
    background-color: hsl(var(--st-muted));
}


