<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>접속 제한 안내</title>
    <style>
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #f8f9fa;
            font-family: 'Malgun Gothic', dotum, sans-serif;
        }
        .error-container {
            /* 화면의 가로 2/3 (약 66%) 정도를 차지하도록 설정 */
            width: 66vw;
            max-width: 1200px;
            min-width: 600px;
            padding: 40px 40px;
            
            /* 디자인 요구사항: 연한 붉은색 배경 및 점선 네모박스 */
            background-color: #fff5f5;
            border: 3px dashed #ff8787;
            border-radius: 8px;
            
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        .error-message {
            font-size: 1.5rem;
            font-weight: bold;
            color: #e03131;
            word-break: keep-all;
            line-height: 1.6;
        }
    </style>
</head>
<body>

    <div class="error-container">
        <p class="error-message">
            <span>처리 중 오류가 발생했습니다.</span> <br>
            <span>No static resource sitemap.xml.</span> <br>
            <!-- <span th:text="${requestUri}"></span> <br>  -->
            <span>2026-06-22 11:01:11</span> <br>
        </p>
    </div>

</body>
</html>