 body {
            margin: 0;
            font-family: Courier, sans-serif;
            background-color: black;
            color: #333;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            height: 100vh;
            text-align: center;
        }
        .container {
            
            background-color: #212121;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 40px;
            max-width: 300px;
            width: 100%;
            height: 40%;
            align-content: top;
            text-align: center;
        
    }
        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 56px;
            background-color: #000000;
            color: #e0e0e0;
            display: flex;
            align-items: center;
            padding: 0 16px;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            font-size: 1rem;
        }
             .page-content {
            background-color: r#000000;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 40px;
            max-width: 1300px;
            width: 100%;
            height: 40%;
            align-content: top;
            text-align: center;
        }
        h1 {
            
            color: #257c9c; 
            font-size: 2.5em;
            margin-bottom: 10px;
        
        }

        p {
            color:#257c9c;
            font-size: 1.2em;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            padding: 12px 20px;
            font-size: 1em;
            color: black;
            background-color: #2078EC;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: #185b9d;
        }

