<!DOCTYPE html>
<html lang="id">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Halaman Tidak Ditemukan</title>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
    <script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
    <style>
        body {
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
            font-family: 'Poppins', sans-serif;
            color: white;
            text-align: center;
            overflow: hidden;
        }

        .container {
            position: relative;
        }

        .astronaut {
            width: 250px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0);
            }
        }

        .error-code {
            font-size: 6rem;
            font-weight: 600;
            color: #a29bfe;
        }

        .message {
            font-size: 1.5rem;
            margin: 10px 0;
        }

        .home-button {
            display: inline-block;
            margin-top: 15px;
            padding: 12px 24px;
            background: #6c5ce7;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 30px;
            text-decoration: none;
            transition: 0.3s;
        }

        .home-button:hover {
            background: #4834d4;
        }

        @media (max-width: 600px) {
            .error-code {
                font-size: 4rem;
            }

            .message {
                font-size: 1.2rem;
            }

            .astronaut {
                width: 200px;
            }
        }
    </style>
</head>

<body>
    <div class="container">
        <img src="https://static.vecteezy.com/system/resources/previews/047/307/961/non_2x/transparent-background-with-cute-astronaut-free-png.png" alt="Astronot Mengambang" class="astronaut">
        <div class="error-code">404</div>
        <div class="message">Oops! Halaman yang Anda cari tidak ditemukan.</div>
        <a href="/" class="home-button">Kembali ke Beranda</a>
    </div>
</body>

</html>