/* Hide scrollbar on all pages */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Firefox */
html {
  scrollbar-width: none;
}

/* IE & old Edge */
body {
  -ms-overflow-style: none;
}

/* Still allow scrolling */
html, body {
  overflow: auto;
}
