        /*body {
            background-image: url('favicon.ico');
            background-color: black;
            / *the "repeat;" doesn't seem to do anything. Any word or none produces the same result * /
            background-repeat: repeat;
            animation: pan 1000s linear infinite;
        }
        */

        body {
            background-color: black;
        }
        
        h1 {
            margin: 20px;
            color: #2596be;
            font-family: "Courier New", monospace;
        }

        p {
            color: #2596be;
            margin: 20px;
            font-family: "Courier New", monospace;
        }

        @keyframes pan {
            0% { background-position: 0 0; }
            100% { background-position: 10000px 0; }
        }