svg#mouse-trail {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;

  opacity: 1;
  transition: opacity 0.4s ease;
}

svg#mouse-trail.disabled {
  opacity: 0;
}

svg#mouse-trail line {
  stroke: #A7B987;
  stroke-width: 1px;
}

svg#mouse-trail circle {
  fill: #A7B987;
  r: 10px;
}