* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
  background-color: white;
  color: black;
  font-family: 'conthrax';
   /* cursor: none; */ 
             }
                
.custom-cursor        {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  display: none;
                      }
                      
.site-wide {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px white;
           }
           
.site-wide .pointer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: white;
  transition: width 0.1s ease-in-out, height 0.1s ease-in-out;
                    }
                    
.site-wide.active .pointer {
  width: 9px;
  height: 9px;
                           }