#mouseTrailCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
    display: block;
    will-change: contents;
    contain: strict;
}

@supports (height: 100svh) {
  #mouseTrailCanvas {
    height: 100svh; /* small viewport height for mobile browsers */
  }
}

@media (max-width: 768px) {
  #mouseTrailCanvas {
    display: none !important;
  }
}