/* Standardcursor aus (für alles in der Seite) */
html, body, * {
  cursor: none;
}

/* Cursor-Container, folgt der Maus */
.custom-cursor{
  position: fixed;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

/* 12px Kreis */
.cursor-dot{
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: block;
  background: #fff; /* bei dir: weiß */
}

/* "click" unten rechts vom Kreis */
.cursor-label{
  position: absolute;
  left: 12px;   /* rechts neben dem Kreis */
  top: 12px;    /* unten vom Kreis */
  margin-left: 12px;
  margin-top: 12px;

  color: #fff;
  font-family: satoshi, sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: lowercase;
  opacity: 0.9;
  white-space: nowrap;
}
