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

/* Track */
::-webkit-scrollbar-track {
    background-color:  hsl(0, 0%, 0%, 0);
}

/* Handle */
::-webkit-scrollbar-thumb {
    /* background: rgb(52,58,64);  */
    background: lightslategray;
    border-radius: 100px;
}

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

@media screen and (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}