/* width */
::-webkit-scrollbar {
    width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 3px deepskyblue;
    #border-radius: 10px;
    background: mediumblue;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: orangered;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: orange;
}