<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="Embedded content from Pixel Phraser">
    <title>Pixel Phraser - Create Engaging Visual Content</title> <!-- Updated title -->
    <style>
        body {
            margin: 0;
            padding: 0;
            height: 100vh;
            /* Full height */
            overflow: hidden;
            /* Prevent scrolling on the body */
            display: flex;
            flex-direction: column;
        }

        header {
            background-color: #333;
            /* Change to your desired header color */
            color: white;
            /* Text color */
            padding: 10px 20px;
            /* Adjust padding as needed */
            text-align: center;
            /* Center the text */
            position: fixed;
            /* Fix the header to the top */
            width: 100%;
            /* Full width */
            z-index: 10;
            /* Make sure it appears above other content */
        }

        .iframe-container {
            flex: 1;
            /* Take up remaining space */
            margin-top: 50px;
            /* Adjust margin for header height */
        }

        iframe {
            width: 100%;
            height: 100%;
            border: none;
            overflow: hidden;
            /* Prevent scrolling inside the iframe */
        }
    </style>
</head>

<body>
    <header>
        <h1>Pixel Phraser</h1> <!-- Title of the page -->
    </header>
    <div class="iframe-container">
        <iframe src="https://fsadeek-pixelphraser.hf.space" title="Pixel Phraser" scrolling="no"></iframe>
    </div>
</body>

</html>