<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Page Under Construction</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            background-color: #f0f4f8;

            color: #333;

            text-align: center;

            padding: 50px;

        }

        h1 {

            color: #2a9d8f;

            font-size: 2.5em;

        }

        p {

            font-size: 1.2em;

            color: #264653;

        }

        .container {

            margin-top: 20px;

        }

        footer {

            margin-top: 50px;

            font-size: 0.9em;

            color: #888;

        }

    </style>

</head>

<body>

    <div class="container">

        <h1>Page Under Construction</h1>

        <p>I am building something cool and local.</p>

        <p>Coming soon in 2026!</p>

    </div>


    <footer>

        <p>Stay tuned for updates!</p>

    </footer>

</body>

</html>