/* 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-color: white;
  color: black;
  font-family: Verdana;


}
.moving-image {
  animation: bounce 2s infinite;
  position: relative;
}

#mouse-sprite {
  position: absolute;
  pointer-events: none; /* Prevents the sprite from blocking your clicks */
  width: 400px; /* Adjust the size of your sprite */
  height: 300px;
  z-index: 9999; /* Keeps the sprite on top of other elements */
}
