/* 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: lightgoldenrodyellow;
color: black;
font-family: Verdana;
background: url("bg.png") repeat;
}

.spin-slow {
    /* Use the standard transform (vendor prefixes optional for modern browsers) */
    transform-origin: center; /* rotate around the center */
    animation: spin 60s linear infinite; /* 60 seconds for one full rotation */
}

.spin-fast {
    transform-origin: center; 
    animation: spin 10s linear infinite; 
}

/* Keyframes for full 360° rotation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


