@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    background-color: #ffccff;
    font-family: "Comic Sans MS", cursive, sans-serif;
    color: #ff0000;
    text-align: center;
    padding: 20px;
    
}

@keyframes bgflash {
    0% { background-color: #ffccff; }
    100% { background-color: #ffff66; }
}

.crazy-header {
    font-family: 'Press Start 2P', cursive;
    font-size: 24px;
    color: #00ffff;
    text-shadow: 2px 2px #ff00ff;
    animation: headerShake 0.2s infinite alternate;
}
@keyframes headerShake {
    0% { transform: rotate(-1deg); }
    100% { transform: rotate(1deg); }
}

button {
    margin: 10px;
    padding: 10px;
    background-color: #ff6666;
    border: 3px dashed #000;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0px 0px 10px yellow;
}

img {
    border: 10px #ff69b4;
    margin: 20px 0;
   /* animation: imgSpin 1.5s infinite linear;*/
}

@keyframes imgSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
a {
    display: block;
    margin-top: 20px;
    font-size: 18px;
    color: #9900ff;
    text-decoration: blink;
}
