<!doctype html>
<title>Datanyze - We'll be back soon!</title>

<head>
    <link href='https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap' rel='stylesheet' type='text/css'>
    <link href='https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap' rel='stylesheet' type='text/css'>
</head>
<style>
    body {  width: 100%; height: 100%; text-align: center; padding: 0; margin: 0;}
    h1 { font-size: 35px; color: #0B1E1F; font-family: "Roboto Slab"; }
    body {font-family: "Lato"; color: #333; }
    .page-layer { display: flex; text-align: left; width: 100%; height: 100%; justify-content: flex-start; flex-direction: column;}

    .header-layer { display: flex; padding-left: 24px; width: 100%; height: 40px; align-items: center; justify-content: flex-start; box-shadow: 0px 2px 10px rgba(75, 151, 158, 0.15);}
    .logo{ height: 32px;}

    .body-layer { position: relative; display: flex;  width: 100%; justify-content: flex-start; flex: 1; flex-direction: column; margin-left: 120px; font-size: 16px; padding-top: 290px}
    .nyze-img{ height: 400px; width: 650px; position: absolute; left: 125px; top: 0;}
    p{ color: #0B1E1F;}
    a { color: #dc8100; text-decoration: none; }
    a:hover { color: #333; text-decoration: none; }
    .text-section {margin-bottom: 60px;}
    button {
        display: flex; align-items: center; justify-content: center; padding: 12px; color: white; font-size: 16px; border: none; cursor: pointer;
        background: linear-gradient(90deg, #B85CC7 0%, #E460EF 100%); width: 177px; box-shadow: 0px 12px 21px rgba(84, 95, 123, 0.09); border-radius: 50px;}
</style>

<div class="page-layer">
    <div class="header-layer">
        <img alt="datanyze_icon" class="logo" src="https://assets.datanyze.com/images/datanyze-logo.png">
    </div>
    <div class="body-layer">
        <img alt="datanyze_icon" class="nyze-img" src="https://assets.datanyze.com/images/nyze-fishing_1.svg">
        <h1>We&rsquo;ll be back soon!</h1>
        <div class="text-section">
            <p>We&rsquo;re very sorry for the inconvenience but we&rsquo;re performing some maintenance at the moment.</p>
            <p>We will be back online shortly! </p>
            <p><b>The Datanyze Team</b></p>
        </div>
        <div class="button-section">
            <button id="home-page-btn">Home Page</button>
        </div>
    </div>
</div>


<script type="text/javascript">
    document.getElementById("home-page-btn").onclick = function() {
        window.location.href = 'https://www.datanyze.com/';
    };
</script>
