* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
    scrollbar-width: thin;
    scrollbar-color: white transparent;
    
    &::-webkit-scrollbar {
      width: 2px;
    }
    
    &::-webkit-scrollbar-track {
      background: transparent;
    }
    
    &::-webkit-scrollbar-thumb {
      background: white;
    }
    
    &::-webkit-scrollbar-thumb:hover {
      background: rgba(255, 255, 255, 0.8);
    }

}

body {
  background-image: url('assets/stars.gif');
  background-color: #000;
  background-repeat: repeat;
  background-size: auto;
  font-size: 10px;
  color: #fff;
  font-family: "Google Sans Code", monospace
}
      