 
  
 
 
  .hover-this {
    transition: all 0.3s ease;
  }
  
   
  
  .cursor {
    pointer-events: none;
    position: fixed;
    padding: 0.8rem;
    background-color: #fff;
    border-radius: 50%;
    mix-blend-mode: difference;
    transition: transform 0.3s ease;
    z-index: 9999999999999999999;  
  }
  
  .hover-this:hover ~ .cursor {
    transform:translate(-50%, -50%) scale(8);
  }
   