::selection {
background: #000000; /* Safari */
color: #fff;
}
::-moz-selection {
background: #000000; /* Firefox */
color: #fff;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #000 #ffffff;
  scrollbar-border-radius:6px;
}

 /*Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
  z-index:-99999999;
}

*::-webkit-scrollbar-thumb {
  background-color: #D3D3D3;
  border-radius: 6px;
  width: 6px;
  border: 1px solid #fff;
  transition-duration: 0.2s;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #000;
  border-radius: 6px;
  width: 0px;
  border: 1px solid #fff;
  transition-duration: 0.2s;
}