<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>페이지를 찾을 수 없어요</title>
    <style>
        body {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            text-align: center;
        }

        h1 {
            font-size: 2rem;
            color: #333;
        }

        p {
            font-size: 1rem;
            color: #636b78;
        }
    </style>
</head>
<body>
    <h1>페이지를 찾을 수 없어요</h1>
    <p>지금 입력하신 주소의 페이지는<br/>삭제되었어요.</p>
</body>
</html>