<!DOCTYPE html>
<html>
<head>
    <title>Error</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100 flex items-center justify-center min-h-screen">

<div class="text-center">
    <h1 class="text-5xl font-bold text-red-500">500</h1>
    <p class="mt-4 text-lg">Something went wrong</p>
    <a href="/" class="mt-6 inline-block bg-black text-white px-6 py-2 rounded-full">
        Go Home
    </a>
</div>

</body>
</html>