<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>요청 URL 오류</title>
  <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f2f2f2;
            color: #333;
            text-align: center;
            padding: 50px;
        }
        .container {
            background-color: #fff;
            padding: 20px;
            margin: 20px auto;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            max-width: 600px;
        }
        p {
            font-size: 1.2em;
        }
    </style>
</head>
<body>
<div class="container">
  <p>요청 URL에 오류가 있습니다.</p>
</div>
</body>
</html>
