.cursor,
.follower {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.cursor {
  width: 6px;
  height: 6px;
  background-color: #3D3D3D;
  z-index: 1001;
}

.follower {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background: #fff;
  box-shadow: 0 0 30px 15px #fff, 0 0 50px 30px rgba(227, 255, 255, 0.6), 0 0 70px 45px rgba(255, 255, 255, 0.3);
  z-index: 1000;
  transition: transform ease 0.1s;
  text-align: center;
}
.follower span {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  transform: scale(0);
}
.follower.is-active {
  transform: scale(2);
}