body, html {
  color: black;
  font-family: MS Gothic;
  background: white;
  margin: 0;
  padding: 0;
  cursor: url("/cursors/stagradient.gif"), auto;
  overflow-y: hidden;
}

a {
  cursor: url("/cursors/stagradient.gif"), default;
}

#rainbow {
    font-family: MS Gothic;
}
#rainbow_text_animated {
    background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow_animation 6s ease-in-out infinite;
    background-size: 400% 100%;
}

@keyframes rainbow_animation {
    0%,100% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }
}

::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}