
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: rgb(0,0,0);
    color:red;
    font-family:'Courier New', Courier, monospace;
    
}
a {
    color:whitesmoke;
}

.scroll {
    white-space: nowrap;
    position: absolute;
    overflow: hidden;
    font-size: 30px;
    }
    .scroll span {
    display: inline-block;
    padding-left: 100%;
    -moz-animation: scroll 5s linear infinite;
    -webkit-animation: scroll 5s linear infinite;
    animation: scroll 6s linear infinite;
    }
    .scroll2 span {
    animation-delay: 3s;
    }

    @keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

