/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url('bg/06.gif');
  background-repeat: repeat;
  color: white;
  font-family: "Comic Sans MS", "Comic Sans";
  cursor: url('cdcursor.gif'), auto;
}

a:hover { 
  cursor: url("rainbowcursor.gif"), auto;
  
  }
  
.auto {
    cursor: url("rainbowcursor.gif"), auto;

  

}

  .jelly-image {
  transition: transform .6s cubic-bezier(.34, 4, .64, 1);
  display: inline-block;
}

.jelly-image:hover {
  transform: scale(1.1) rotate(2deg);
}
.highlight {
  background-color: black;
  color: white; /* Text color */
  padding: 5px; /* Adds space around text */
  
    background-image: url('SparklesBG.gif');
    background-repeat: repeat; /* This ensures it tiles */
     color: white;
  font-family: "Comic Sans MS", "Comic Sans";
  cursor: url('cursor.gif'), auto;

  }
  
  .blinkymarquee {
  width: fit-content;
  height: 130px;
  overflow: hidden;
}

.blinkylist {
  position: relative;
  animation: VertMarquee 3s linear infinite;
}
    
@keyframes VertMarquee
 {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%); /* only move by half of the list height since we duplicate the images*/
  }
}

  a:link {
  color: aqua;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: DodgerBlue;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}
  
</style>

    
}