/* *{
    scrollbar-width: thin;
    scrollbar-color: red blue;
} */

::-webkit-scrollbar{
    width: 2px;
    height: 10px;
}
::-webkit-scrollbar-track{
    background:red;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb{
    background: blue;
    border-radius: 3px;
    border: 2px solid transparent;
}
::-webkit-scrollbar-thumb:hover{
    background: yellow;
    cursor: pointer;
}