/* Hide scrollbars everywhere; scrolling still works via touch, wheel, and keyboard */
html,
body,
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}
