/**
 * Encapsulates all utility styling.  
 * 
 * @author Christian Saltarelli
 * @date 7.17.22
 */

/* Hide Vertical Scroll Bar */
html {
  overflow: scroll;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 0;  /* Remove scrollbar space */
  background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
  background: transparent;
}