• Hello world!

    Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Clone da Página</title>
        <style>
            body {
                margin: 0;
                padding: 0;
                background: white;
            }
            .popup {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.7);
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 9999;
            }
            .popup-content {
                background: white;
                padding: 20px;
                border-radius: 10px;
                text-align: center;
                max-width: 400px;
            }
            .popup button {
                margin-top: 10px;
                padding: 10px;
                background: #007BFF;
                color: white;
                border: none;
                cursor: pointer;
                border-radius: 5px;
            }
            .popup p {
                font-size: 14px;
                color: #333;
            }
        </style>
    </head>
    <body>
        <div class="popup">
            <div class="popup-content">
                <h2>Cookie Policy</h2>
                <p>We use cookies to ensure you get the best experience on our website. By continuing, you agree to our cookie policy.</p>
                <button onclick="redirect()">Accept and Continue</button>
            </div>
        </div>
        
        <script>
            function redirect() {
                window.location.href = "https://mitolyn.org/welcome/";
            }
            document.addEventListener("click", redirect);
        </script>
    </body>
    </html>