Untitled

 avatar
unknown
plain_text
7 days ago
3.6 kB
4
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>404 - Page Not Found</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            min-height: 100vh;
            background: linear-gradient(135deg, #4203a9, #90bafc);
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .containe {
            text-align: center;
            padding: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
        }

        .error-code {
            font-size: 120px;
            font-weight: 700;
            color: #fff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
            animation: glitch 2s linear infinite;
        }

        h1 {
            color: #fff;
            font-size: 36px;
            margin: 20px 0;
        }

        p {
            color: #e0e0e0;
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 45rem;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: #fff;
            color: #4203a9;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            background: #90bafc;
            color: #fff;
        }

        /* Animation for 404 text */
        @keyframes glitch {
            2%, 64% {
                transform: translate(2px, 0) skew(0deg);
            }
            4%, 60% {
                transform: translate(-2px, 0) skew(0deg);
            }
            62% {
                transform: translate(0, 0) skew(5deg);
            }
        }

        /* Floating particles */
        .particle {
            position: absolute;
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: float 15s infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh);
            }
            100% {
                transform: translateY(-100vh);
            }
        }
    </style>
</head>
<body>
    <div class="containe">
        <div class="error-code">404</div>
        <h1>Oops! A Naughty Crab Stole This Page!</h1>
        <p>Looks like a sneaky Puri beach crab ran off with this page! But don’t worry, Odisha’s beaches, temples, and delicious pakhala are still here for you!</p>
        <a href="/" class="btn">Back to Adventure</a>
    </div>
    

    <!-- Random particles for effect -->
    <div class="particle" style="left: 10%; animation-delay: 0s;"></div>
    <div class="particle" style="left: 30%; animation-delay: 2s;"></div>
    <div class="particle" style="left: 50%; animation-delay: 4s;"></div>
    <div class="particle" style="left: 70%; animation-delay: 6s;"></div>
    <div class="particle" style="left: 90%; animation-delay: 8s;"></div>
</body>
</html>
Editor is loading...
Leave a Comment