body {
  margin: 0;
  overflow-y: hidden;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px rgb(255, 255, 255);
  border-radius: 1rem;
  background: #EEEEF0;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #808384;
  border-radius: 1rem;
}

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