<!DOCTYPE html>
<html lang="es">
    <head>
        <meta charset="utf-8">
        <title>webcentral.au - 404 Response Error Page</title>
        <meta name="description" content="Oh no we couldn't find the page you were looking for">
        <meta name="robots" content="noindex, nofollow">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
        <!-- Include the Tailwind JS file -->
        <script src="https://cdn.tailwindcss.com"></script>
        <script>
            tailwind.config = {
                theme: {
                    extend: {
                        colors: {
                            primary: '#021831',
                            secondary: '#141415',
                            hover: '#021831'
                        }
                    }
                }
            }
        </script>
    </head>
    <body>
        <section class="min-h-screen flex justify-center items-center bg-primary/5">
            <div class="container">
                <div class="max-w-xl mx-auto text-center">
                    <img src="/assets/brand/webcentral-logo-on-light.png"
                    class="h-10 mx-auto select-none" alt="Webcentral">
                    <p class="md:text-8xl text-4xl font-bold text-secondary mt-10">404</p>
                    <h2 class="md:text-4xl text-xl font-bold text-secondary mt-4">Page not found</h2>
                    <p class="md:text-lg text-sm font-medium text-slate-500 mt-4">Oh no we couldn't find the page you were looking for</p>
                    <a href="/" class="bg-primary hover:bg-hover text-white cursor-pointer inline-block rounded-[0.5rem] px-5 py-2.5 mt-4">
                        <span aria-hidden="true">Go back home</span>
                    </a>
                </div>
            </div>
        </section>
    </body>
</html>