<!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 { font-family: sans-serif; text-align: center; padding: 50px; }

        h1 { font-size: 50px; }

        p { font-size: 20px; }

        a { color: blue; text-decoration: none; }

    </style>

</head>

<body>

    <h1>Oops! Something went wrong.</h1>

    <h3>404 - Page Not Found</h3>

    <p>The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.</p>

    <a href="/">Go to Homepage</a>

</body>

</html>