<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>
      Page Not Found
    </title>
    <style>
        body {
            font-family: Arial, sans-serif;
            text-align: center;
            padding: 50px;
            background: #f8f8f8;
            color: #333;
        }
        .container {
            display: inline-block;
            padding: 40px;
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        a.home-link {
            color: #007BFF;
            text-decoration: none;
            font-weight: bold;
        }
        a.home-link:hover {
            text-decoration: underline;
        }
    </style>
    <script>
        // After 5 seconds, automatically redirect to the home page
        window.addEventListener('DOMContentLoaded', function() {
            setTimeout(function() {
                window.location.href = '/';
            }, 5000);
        });
    </script>
  </head>
  <body>
    <div class="container">
      <h1>
        404 - Page Not Found
      </h1>
      <p>
        Sorry, the page you were looking for doesn’t exist.
      </p>
      <p>
        <a href="/" class="home-link">Click here to go to the home page</a>
      </p>
      <p>
        If you don’t click the link, you’ll be redirected automatically in a few seconds.
      </p>
    </div>
    <head>
      <meta name="robots" content="noindex,follow">
    </head>
    <h1>
      404 Not Found
    </h1>
    <p>
      Click <a href="/">here</a> to go to the home page.
    </p>
  </body>
</html>