<!DOCTYPE html>
<html>
<head>
    <title>Error</title>
    <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap">
    <style>
        body {
            font-family: 'Poppins', sans-serif; /* Use Poppins font */
            background-color: #f0f2f5; /* Light background matching other pages */
            text-align: center; /* Centered text */
            padding: 50px; /* Padding around content */
            margin: 0; /* Remove default margin */
            height: 100vh; /* Full height of the viewport */
            display: flex; /* Use flexbox for layout */
            flex-direction: column; /* Column arrangement */
            justify-content: center; /* Center content vertically */
            align-items: center; /* Center content horizontally */
        }

        h1 {
            color: #d9534f; /* Danger color */
            margin-bottom: 20px; /* Space below heading */
            font-size: 2.5rem; /* Larger heading size */
        }

        p {
            color: #333; /* Dark text color */
            margin-bottom: 20px; /* Space below paragraph */
            font-size: 1.2rem; /* Paragraph font size */
        }

        .home-link {
            margin-top: 20px; /* Space above link */
            display: inline-block; /* Block-level for padding */
            padding: 10px 20px; /* Padding around link */
            background-color: #333; /* Dark background for link */
            color: white; /* Text color */
            text-decoration: none; /* Remove underline */
            border-radius: 5px; /* Rounded corners */
            transition: background-color 0.3s; /* Smooth background color change */
            font-size: 1.2rem; /* Link font size */
        }

        .home-link:hover {
            background-color: #555; /* Lighter shade on hover */
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            body {
                padding: 20px; /* Reduce padding on smaller screens */
            }

            h1 {
                font-size: 2em; /* Adjust heading size */
            }

            p {
                font-size: 1rem; /* Adjust paragraph size */
            }

            .home-link {
                padding: 8px 16px; /* Adjust link padding */
            }
        }
    </style>
</head>
<body>
<h1>Oops! It seems we've hit a bump in the road.</h1>
<p>Sometimes even the best journeys encounter unexpected detours. But don’t worry! We’re here to help you find your way back.</p>
<p>Click below to return to the homepage and continue your adventure:</p>
<a class="home-link" href="https://whoelse.in">Go to Homepage</a>
</body>
</html>
