@charset "utf-8";
/* CSS Document */

body {
    background-image: url(images/ecco2k.jpg);
    background-size: cover;
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
    color: #FFFF00;
    text-align: center;
}

.scrolling-text {
    display: inline-block;
    background-color: yellow;
    color: #000;
    padding: 10px;
    white-space: nowrap;
    position: relative;
    animation: scrollText 10s linear infinite;
}

@keyframes scrollText {
    0% {
        left: 100%; /* start off-screen to the right */
    }
    100% {
        left: -100%; /* move off-screen to the left */
    }
}

a:link, a:visited {
    color: #FFFFFF;
}

a:hover {
    font-weight: bold;
}

