/*
  This stylesheet hides all scrollbars on a webpage,
  while still allowing the content to be scrollable.
  It provides cross-browser compatibility.
*/

/* For Webkit-based browsers (Chrome, Safari, new Edge) */
::-webkit-scrollbar {
  display: none;
}

/* For Firefox */
html {
  scrollbar-width: none;
}

/* For Internet Explorer and older versions of Edge */
body {
  -ms-overflow-style: none;
}

