html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    text-decoration: none;
    color: initial;
}
* {
    font-family: 'Malgun Gothic', '맑은 고딕', Arial, sans-serif;
    box-sizing: border-box;
    font-weight: 400;
}
body,
html {
    height: 100%;
}

html {
    overflow: auto;
    scrollbar-gutter: stable both-edges;
}

:root {
    --neutral-g-50: #c2bfc4;
}
/* Webkit 기반 브라우저 */
::-webkit-scrollbar {
    width: 10px; /* 스크롤바 너비 */
}

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

::-webkit-scrollbar-thumb {
    background: #c2bfc4; /* 핸들 색상 */
    border-radius: 10px; /* 핸들 모서리 둥글게 */
    border: 4px solid #f5f5f5;
}

.dark ::-webkit-scrollbar-thumb {
    border-color: #242424;
}

/* Firefox */
body {
    scrollbar-width: thin; /* 스크롤바 너비: thin, auto */
    scrollbar-color: var(--neutral-g-50) transparent;
}
