<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Not Found</title>
    <style>
   body {
            background-color: white;
            font-family: 'Helvetica', 'Arial', sans-serif;
            color: black;
            margin: 0;
            padding: 0;
        }

        .container {
            position: absolute;
            top: 20px;
            left: 20px;
            max-width: 600px;
            padding: 10px;
        }

        h1 {
            color: black;
            font-size: 24px;
            font-weight: bold;
            margin: 0 0 20px 0;
            padding: 0;
            line-height: 1.3;
        }

        p {
            color: #555;
            font-size: 16px;
            margin: 0;
            padding: 0;
            line-height: 1.5;
            font-family: 'Courier New', monospace;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>Not Found</h1>
        <p>Sorry Page Not found</p>
    </div>
</body>
</html>