       /* Basic CSS styling */
        body {
            font-family: Hedvig Letters Serif, serif;
            margin: 0;
            padding: 0;
	    background-image: url('backdrop.jpg');
	    background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            height:100vh;
            background-color: #000000;
        }
a:link {color: #990000;}
a:visited {color: #990000;}

        .container {
            max-width: 800px;
            margin: 50px auto;
            padding: 20px;
            background-color: rgba(0,0,0,0.6);
            color: #999;
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        h1 {
            color: #999;
        }
        p {
            color: #999;
            text-align: left;
        }
        pre {
            font-family: Hedvig Letters Serif, serif;
            text-align: left;
        }
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #007bff;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
        }
        .btn:hover {
            background-color: #0056b3;
        }