html,
body {
    scroll-behavior: smooth;
}

/* width */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #1f1f1f;
    border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #6f6f6f;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #adadad;
}

html,
body,
div {
    scrollbar-color: #6f6f6f #1f1f1f;
    scrollbar-width: thin;
}