/* Preserve scrolling on every web page while keeping native scrollbars hidden. */
html,
body,
body * {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
body *::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}
