.cursor {
  position: fixed;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: white;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  font-size: 1vw;
  font-family: "bebas neue";
  font-weight: 600;
  border-radius: 50px;
  padding: 2px 4px;
  opacity: 0;
  scale:0;
}
@media(max-width:768px){
  .cursor{
    display: none;
  }
}