/* 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;
}

.shake-image:hover {
    /* Apply the shake animation on hover */
    animation: shake 0.5s;
    /* The animation will repeat infinitely as long as the user is hovering */
    animation-iteration-count: infinite; 
}

@keyframes shake {
    /* Define the sequence of movements for the shake effect */
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    /* ... intermediate steps ... */
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}
