/* Make sure body has no overflow */
body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
}

/* The element that will follow the cursor */
.cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(255, 0, 0, 0.8); /* Red color with some opacity */
  pointer-events: none; /* Prevent the element from blocking clicks */
  transition: transform 0.1s ease; /* Smooth follow effect */
  transform: translate(-50%, -50%);
}
