<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Page Not Found</title>
</head>
<body>
    <h1>404 - Page Not Found</h1>
    <p>Sorry, the page you are looking for could not be found.</p>
    
    <script>
        // Redirect to the homepage after a few seconds
        setTimeout(function() {
            window.location.href = "/";
        }, 3000); // change the number 3000 to the desired number of milliseconds before redirection
    </script>
</body>
</html>
