 /* width */
 ::-webkit-scrollbar {
    width: 2px;
    height: 4px;
    border-radius: 20px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  transition: 0.5s;
    background: #40525e;
    border-radius: 20px;

}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  transition: 0.5s;
    background: rgb(26, 25, 25);
    border-radius: 20px;

}
