<!DOCTYPE html>
<html>
<head>
    <title>Page Not Found | Certify</title>
    <link rel="icon" type="image/png" href="/images/certify.png">
    <link href="https://cdn.jsdelivr.net/npm/daisyui@5" rel="stylesheet" type="text/css" />
    <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
</head>
<body class="min-h-screen bg-gradient-to-r from-blue-100 to-blue-300 flex items-center justify-center">
    <div class="bg-white rounded-3xl shadow-xl p-10 max-w-2xl mx-4 text-center">
        <h1 class="text-6xl font-bold animate-pulse text-red-600">404</h1>
        <h2 class="text-2xl font-semibold mt-4 text-gray-800">Page Not Found</h2>
        <p class="text-gray-600 mt-4">The page you are looking for does not exist or may have been moved.</p>
        <a href="/" class="btn bg-black text-white rounded-xl mt-6">Back to Home</a>
    </div>
</body>
</html>