<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>jettesimon.com</title>
    <style>
        :root {
            --bg-color: #f4f4f9;
            --text-color: #333;
            --accent-color: #2c3e50;
            --border-color: #ddd;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        header {
            background: linear-gradient(135deg, var(--accent-color), #34495e);
            color: white;
            padding: 2rem 1rem;
            text-align: center;
        }

        nav {
            background: #fff;
            border-bottom: 1px solid var(--border-color);
            padding: 0.5rem;
            text-align: center;
        }

        main {
            flex: 1;
            max-width: 800px;
            margin: 2rem auto;
            padding: 2rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        footer {
            text-align: center;
            padding: 1rem;
            font-size: 0.9rem;
            color: #666;
        }

        h1 {
            margin: 0;
            letter-spacing: -1px;
        }

        @media (min-width: 768px) {
            main {
                padding: 4rem;
            }
        }
    </style>
</head>
<body>

    <header>
        <h1>jettesimon.com</h1>
    </header>

    <nav>
        <p>Welcome to the portal</p>
    </nav>

    <main>
        <article>
            <h2>Under Construction</h2>
            <p>Welcome to jettesimon.com. This site is currently being rebuilt. Please check back soon for updates and professional portfolios.</p>
        </article>
    </main>

    <footer>
        <p>&copy; 2023 jettesimon.com. All rights reserved.</p>
    </footer>

</body>
</html>