body::-webkit-scrollbar {
  width: 12px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: #333430;        /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: #333430;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 3px solid #333430;  /* creates padding around scroll thumb */
}