<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Joseph Kehrer</title>

    <style>

        body {

            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

            display: flex;

            justify-content: center;

            align-items: center;

            height: 100vh;

            margin: 0;

            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

            color: #2d3436;

            text-align: center;

        }

        .container {

            padding: 2rem;

            background: white;

            border-radius: 20px;

            box-shadow: 0 10px 25px rgba(0,0,0,0.1);

        }

        h1 {

            font-size: 2.5rem;

            margin-bottom: 0.5rem;

        }

        p {

            font-size: 1.2rem;

            color: #636e72;

        }

    </style>

</head>

<body>

    <div class="container">

        <h1>Congrats, you found me.</h1>

        <p>Joseph Kehrer | Site is officially live.</p>

    </div>

</body>

</html>