Index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Borkonomics - Coming Soon</title>
    <style>
        /* General Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Body Styling */
        body {
            font-family: Arial, sans-serif;
            height: 100vh;
            background: url('https://borkonomics.com/wp-content/uploads/2024/11/DALL·E-2024-11-28-08.33.53-A-playful-cartoon-style-Shiba-Inu-character-inspired-by-the-uploaded-animation-posed-confidently-for-use-as-a-profile-image.-The-dog-wears-reflective.webp') no-repeat center center/cover;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            overflow: hidden;
        }

        /* Overlay for better text contrast */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
            z-index: 0;
        }

        /* Content Styling */
        .content {
            position: relative;
            z-index: 1;
        }
        .content h1 {
            font-size: 4rem;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        }
        .content p {
            font-size: 1.5rem;
            margin: 20px 0;
        }
        .content .cta {
            margin-top: 30px;
        }
        .content .cta a {
            text-decoration: none;
            color: white;
            background-color: #ff6f61;
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 1.2rem;
            transition: background-color 0.3s ease;
        }
        .content .cta a:hover {
            background-color: #e55b50;
        }
    </style>
</head>
<body>
    <div class="overlay"></div>
    <div class="content">
        <h1>🐾 Borkonomics</h1>
        <p>The Future of Memes, Chaos, and Crypto is Coming Soon!</p>
        <div class="cta">
            <a href="mailto:[email protected]">Contact Us</a>
        </div>
    </div>
</body>
</html>