<!DOCTYPE html>
<html>
<head>
    <title></title>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet">
    <style>
        body {
            font-family: 'Open Sans', sans-serif;
            font-size: 1em;
        }
        .bb-alert-message-wrapper {
            display: -moz-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            justify-content: center;
            -ms-flex-pack: center;
            -ms-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            text-align: center;
            height: 100vh;
            width: 100%;
            padding: 0 30px;
            box-sizing: border-box;;
        }
        .bb-alert-message {
            width: 100%;
        }
        @media screen and (min-width: 768px) {
            .bb-alert-message {
                width: 60%;
            }
        }
        h1 {
            font-size: 1.75em;
            font-weight: 700;
            color: #5f8848;
        }
        @media screen and (min-width: 768px) {
            h1 {
                font-size: 2em;
            }
        }
        a, #timer-integer {
            color: #5f8848;
            text-decoration: none;
        }
        p, span {
            color: #4b4d4f;
            font-size: 18px;
        }
        .bb-text-large {
            font-weight: 700;
        }
        #timer {
            color: #999;
        }
    </style>
    <script type="text/javascript">
        var count = 15;
        var redirect = "https://betterbricks.com";

        function countDown(){
            var timer = document.getElementById("timer");
            if(count > 0){
                count--;
                timer.innerHTML = "You will be redirected automatically in <span id='timer-integer'>"+count+"</span> seconds.";
                setTimeout("countDown()", 1000);
            }else{
                window.location.href = redirect;
            }
        }
    </script>
</head>
<body>
    <div class="bb-alert-message-wrapper">
        <div class="bb-alert-message">
            <h1>The BetterBricks blog is under construction and will be available in October.</h1>
            <p class="bb-text-large">In the meantime, please visit <a href="https://betterbricks.com">BetterBricks.com</a>.</p>
            <span id="timer"><script type="text/javascript">countDown();</script></span>
        </div>
    </div>
</body>
</html>