<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>FILL Crypto</title>

    <style>

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }

        body {

            background: url('your-image.jpg') no-repeat center center/cover;

            height: 100vh;

            display: flex;

            justify-content: center;

            align-items: center;

            flex-direction: column;

            text-align: center;

        }

        .buttons {

            position: absolute;

            bottom: 20px;

            display: flex;

            gap: 20px;

        }

        .buttons a {

            padding: 15px 30px;

            font-size: 20px;

            text-decoration: none;

            color: white;

            background: rgba(0, 0, 0, 0.7);

            border-radius: 10px;

            transition: 0.3s;

        }

        .buttons a:hover {

            background: rgba(0, 0, 0, 0.9);

        }

    </style>

</head>

<body>

    <div class="buttons">

        <a href="https://pump.fun" target="_blank">Buy on Pump.fun</a>

        <a href="https://t.me/yourtelegram" target="_blank">Join Telegram</a>

    </div>

</body>

</html>