body {
    font-family: "Comic Sans MS", cursive, sans-serif;
    background: 'Texture_cyan_023.gif' repeat;
    text-align: center;
    padding: 50px;
    color: #00ff00;
    animation: blinkText 1s infinite alternate;
}

h1 {
    font-size: 40px;
    color: #ff00ff;
    text-shadow: 5px 5px 5px #0000ff;
    text-transform: uppercase;
}

button {
    background-color: #ff6600;
    border: 3px dashed #000;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

button:hover {
    background-color: #ff0000;
    color: #fff;
}

@keyframes blinkText {
    0% { color: #ff00ff; }
    100% { color: #00ff00; }
}
