<!DOCTYPE html>

<html lang="pl">

<head>

    <meta charset="UTF-8">

    <title>Erik Wittbrodt</title>

    <style>

        body { font-family: sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background: #f0f0f0; }

        .card { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); text-align: center; }

        h1 { margin: 0 0 10px; color: #333; }

        p { color: #666; }

        a { color: #0066cc; text-decoration: none; font-weight: bold; }

    </style>

</head>

<body>

    <div class="card">

        <h1>Erik Wittbrodt</h1>

        <p>Strona w budowie.</p>

        <p>Kontakt: <a href="mailto:[email protected]">[email protected]</a></p>

    </div>

</body>

</html>