#cursor-square {
  position: fixed;
  top: 0;
  left: 0;

  width: 12px;
  height: 12px;
  border-radius: 50%;

  background: #BC002D;

  pointer-events: none;
  z-index: 999999;

  /* Always stay centered on the mouse */
  transform: translate3d(-9999px, -9999px, 0);
  will-change: transform, width, height;

  mix-blend-mode: normal;
}

/* Big transparent circle on hover */
#cursor-square.is-hover {
  width: 160px;
  height: 160px;
  background: rgba(188, 0, 45, 0.10);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  #cursor-square {
    display: none;
  }
}

@media (pointer: coarse), (hover: none) {
  #cursor-square {
    display: none;
  }
}
