body {
    background-color: white;
    color: black;
    font-family: Verdana;
    background-image: url('https://www.spriters-resource.com/media/asset_icons/172/175637.gif');


    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

/*
 S *ource - https://stackoverflow.com/a/54702294
 Posted by Austen Holland, modified by community. See post 'Timeline' for change history
 Retrieved 2026-05-17, License - CC BY-SA 4.0
 */

.rainbow {
    text-decoration: underline;
    font-size: 32px;
    font-family: fantasy;
    letter-spacing: 5px;
}
.rainbow_text_animated {
    background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow_animation 6s ease-in-out infinite;
    background-size: 400% 100%;
}

@keyframes rainbow_animation {
    0%,100% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }
}
