* {
  cursor: none;
}

.cursor {
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  transition: all 0.1s ease;
  transform: translate(-50%, -50%);

  &::after {
    content: '';
    width: 20%;
    height: 20%;
    position: absolute;
    top: 22%;
    left: 22%;
    border-radius: 50%;
    display: block;
    background-color: pink;
  }
}