
<!DOCTYPE html>
<html lang="id">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>hacked by Athena Team</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: black;
            color: white;
            font-family: monospace;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .container {
            text-align: center;
        }

        .gif-container img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        .hacked-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-top: 20px;
        }

        .message {
            margin-top: 20px;
        }

        .email {
            margin-top: 20px;
        }

        .email a {
            color: white;
            text-decoration: none;
        }
    </style>
</head>
<body>

<div class="container">
    <div class="gif-container">
        <img src="https://i.pinimg.com/originals/5d/1d/fb/5d1dfb2c893ab36d4270969d7873bc35.gif" alt="">
    </div>

    <div class="hacked-title">
        hacked by VextraNexsus
    </div>

    <div class="message">
        Wh00pz!! Your Site Has Been Hacked!
    </div>

    <div class="email">
        <a href="mailto:fenrirnexus@example.com">Athena Team</a>
    </div>
</div>

</body>
</html>