body {
            background: linear-gradient(45deg, rgb(10, 60, 135), rgb(15, 90, 210));
            font-family: 'Roboto', sans-serif;
            color: rgb(195, 245, 25);
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
        }
        .container {
            max-width: 800px;
            padding: 20px;
            text-align: justify;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 10px;
        }
        h1 {
            text-align: center;
        }
        a {
            color: rgb(195, 245, 25);
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }