
    <!DOCTYPE html>
    <html lang="ko">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>pajumarathon.kr</title>
        <style>
            body {
                font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
                background-color: #f4f6f9;
                display: flex;
                justify-content: center;
                align-items: center;
                height: 100vh;
                margin: 0;
            }
            .card {
                background: #ffffff;
                padding: 40px;
                border-radius: 12px;
                box-shadow: 0 4px 20px rgba(0,0,0,0.08);
                text-align: center;
                max-width: 400px;
            }
            h1 { color: #333; font-size: 24px; margin-bottom: 12px; }
            p { color: #666; font-size: 15px; line-height: 1.5; margin: 0; }
        </style>
    </head>
    <body>
        <div class="card">
            <h1>pajumarathon.kr</h1>
            <p>현재 사이트 준비 중입니다.<br>빠른 시일 내에 오픈하겠습니다.</p>
        </div>
    </body>
    </html>
    