/* Apply cursive font to everything */
* {
body {
background: url(https://snekmo.snekki.moe/proxy?url=https://snekki.moe/public?file=snek22.gif);
font-family: cursive;
color: black;
}
.submeta {
background: white
}
  background: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -moz-background-clip: text;
}

/* Apply a fallback font for browsers that do not support 'Cursive' */
html {
  font-family: cursive;
}

/* Apply a hue-rotate filter to change the colors of all images */
img {
  filter: hue-rotate(180deg); /* Rotates the color hues by 180 degrees */
  transition: filter 0.5s ease-in-out; /* Smooth transition effect */
}

/* Optionally, you can apply more effects on hover to enhance interactivity */
img:hover {
  filter: hue-rotate(360deg); /* Complete color shift on hover */
}
