/* width */
::-webkit-scrollbar {
    width: 10px;
}
  
  /* Track */
::-webkit-scrollbar-track {
    background: #1b1c19;
}
  
/* Handle */
::-webkit-scrollbar-thumb {
  background: #084322;
  border-radius: 12px;
}

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