
        body {
            margin: 0;
            padding: 0;
            background-color: #000; /* Dark, eye-friendly background */
            color: #ffffff; /* White text for contrast */
            font-family: Arial, Helvetica, sans-serif, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            text-align: center;
        }
        img {
            max-width: 90%; /* Responsive image size */
            max-height: 80vh; /* Limits height to fit browser */
            height: auto;
            display: block;
            margin: 20px auto; /* Centers image with some spacing */
            border-radius: 8px; /* Subtle rounded corners */
        }
        p {
            font-size: 1.2rem;
            margin: 10px 0;
        }
        a {
            color: #4da8da; /* Soft blue for links */
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
