body::-webkit-scrollbar {
  width: 12px;
  transition: 1s;
}

body::-webkit-scrollbar:hover {
  width: 20px;
  transition: 1s;
}

body::-webkit-scrollbar-track {
  background: #f6f6f6;
}

body::-webkit-scrollbar-thumb {
  background-color: #34A1F0;
  border-radius: 20px;
  border: 3px solid #f6f6f6;
}

body {
  scrollbar-width: thin;
  scrollbar-color: #34A1F0 #f6f6f6;
}

