body {
            font-family: Arial, sans-serif;
            background-color: #121212;
            color: #ffffff;
            text-align: center;
            margin: 0;
            padding: 0;
        }
        .logo {
            position: fixed;
            top: 20%; 
            left: 2%;
            width: 290px;
            height: auto;
            z-index: -1;
        }
        .logo2 {
            position: fixed;
            top: 20%;
            right: 2%;
            width: 290px;
            height: auto;
            z-index: -1;
        }
        .container {
            max-width: 600px;
            margin: auto;
            padding: 50px 20px;
        }
        h1 {
            font-size: 2.5em;
            margin-bottom: 45px;
            margin-top: 1px;
        }
        .button-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 30px;
        }
        .link-button {
            display: block;
            width: 90%;
            margin: 0 auto;
            padding: 12px;
            background-color: #1e88e5;
            color: white;
            text-decoration: none;
            font-size: 1.2em;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .link-button:hover {
            background-color: #1565c0;
        }
        .back-button {
            display: inline-block;
            margin-top: 40px;
			margin-bottom: 80px;
            background-color: #1e88e5;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 1.1em;
        }
        .back-button:hover {
            background-color: #1565c0;
        }
        footer {
            background-color: #121212;
            color: silver;
            text-align: center;
            padding: 10px;
            border-top: 2px solid #1565c0;
            box-shadow: 0px -5px 5px rgba(0,0,0,0.5);
            position: fixed;
            bottom: 0;
            width: 100%;
            box-sizing: border-box;
        }