<!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>
    <style>
        body {
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f8f8f8;
            font-family: Arial, sans-serif;
            text-align: center;
        }
        .container {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            max-width: 400px;
        }
        .logo {
            max-width: 100%;
            height: auto;
            margin-bottom: 20px;
        }
        .message {
            font-size: 16px;
            color: #333;
            margin-bottom: 20px;
        }
        .button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #041E42; /* PMS 281 */
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
        }
        .button:hover {
            background-color: #02122A;
        }
    </style>
</head>
<body>
    <div class="container">
        <img class="logo" src="https://www.shaareyzedek.org/wp-content/themes/shaareyzedek/images/logo.png" alt="Shaarey Zedek Logo">
        <p class="message">We're sorry, the webpage you are looking for is not here. Please click below to go to our homepage.</p>
        <a class="button" href="https://www.shaareyzedek.org">Click Here</a>
    </div>
</body>
</html>