* {
  cursor: none;
}

body {
  background: rgb(41, 41, 41);
  height: 200vh;
}

.cursor {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  border-radius: 50px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cursor::before,
.cursor::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  height: 10px;
  width: 10px;
  border-radius: 50px;
}

.cursor::before {
  background: white;
}

.cursor.click::before {
  animation: click 1s ease forwards;
  background: white;
}

@keyframes click {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(7);
  }
}

h1 {
  position: absolute;
  color: white;
  left: 50%;
  transform: translateX(-50%);
  top: 70px;
  font-family: cursive;
  text-align: center;
}
