#fixed-circle {
  position: fixed;
  width: 30px; /* Adjust the width and height as needed */
  height: 30px;
  background-color: #f6d2c186; /* Blue fill color */
  border: 1.5px solid #146266; /* Red border color */
  border-radius: 50%;
  top: 50%; /* Adjust the positioning as needed */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  pointer-events: none;
}

#mouse-trail {
  position: fixed;
  pointer-events: none;
  z-index: 9998; /* Ensure it's below the fixed circular element */
}

.mouse-trail-circle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #01f790; /* Blue fill color */
  border: 2px solid #f6d2c1; /* Red border color */
  border-radius: 50%;
  opacity: 0.6;
  transform-origin: center;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s, opacity 0.3s;
}
@media (max-width: 600px) {
  #fixed-circle {
    display: none;
    opacity: 0;
  }
}
