:root {
    --yldrmtechColor: #ff8900;
    --white: #ffffff;
    --backgroundColor: #0c0c0c;
}

::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background:none;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgb(80, 80, 80); 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(206, 206, 206); 
  }