<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Url.rw - Simplifying URLs for the Digital Age</title>
</head>
<style>
    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    body{
        height: 100vh;
        font-family: Arial, sans-serif;
        font-size: 16px;
        line-height: 18px;
        text-align: center;
        color: #566f85;
        margin: 0;
        position: relative;
        overflow: hidden;
        background: #1B2C43;
    }
    .container{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 78%;
    }
    .navbar{
        background-color: black;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding:10px;
        height: 10%;
    }
    .footer{
        height: 12%;
        width: 100%;
        background-color: #29CD8A;
        color: black;
        text-align: center;
        padding: 15px;

    }
    .container h1{
        font-size: 26px;
        line-height: 30px;
        margin: 0 0 20px;
    }
    .container p{
        margin: 0 0 12px;
    }
    .container a{
        text-decoration: none;
        color: #fff;
    }
    #countdownButton{
        visibility: hidden;
    }
</style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JJFL3Y4WJS"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-JJFL3Y4WJS');
</script>
<body>
    <div class="navbar">
        <div class="logo">
            <a href="/"><img style="width: 50px; height:45px;" src="https://url.rw/images/favicon.png" alt="url.rw dereferer/short-URL" title="url.rw dereferer/short-URL" width="100" height="30"></a>
        </div>
        <div id="countdownText" style="display: none;">0 seconds</div>
        <a href="https://test.com" id="a" style="display: none;"></a>
        <a href="javascript:void(0);" rel="noreferrer" class="redirect-button" id="countdownButton">Continue</a>
    </div>
    <div class="container">
        <div>
            <h1>
                <a href="https://url.rw">url.rw</a>
            </h1>
            <p>Please wait while we are hiding your referer...</p>
            
        </div>
    </div>
    <div class="footer">
        <a href="https://url.rw/" style="color:black;padding:10px;text-decoration: underline; line-height:2.5;">
            <strong>Create your own URL?</strong>
        </a>
        <br>
        © 2015-2023 All Rights Reserved Url.rw
    </div>
</body>
</html>

<script>
    var countdownButton = document.getElementById("countdownButton");
    function redirectToLink() {
        // Replace 'https://t.co/1iOZY00uYM' with the actual URL you want to redirect to
        countdownButton.href = 'https://t.co/1iOZY00uYM';
    }

    // Trigger the redirection function after 2 seconds (2000 milliseconds)
    setTimeout(function() {
        redirectToLink();// Redirect after an additional 2 seconds
        countdownButton.click(); // Programmatically click the link
    }, 2000)
</script>