<!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
	<meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    
	<title>Powerleakin</title>

    <link href="https://fonts.googleapis.com/css?family=Raleway:300,400,500,600,700" rel="stylesheet" type="text/css" />
    <style>
        body {
            margin: auto;
            font-family: 'Raleway', sans-serif;
        }

        h1 {
            font-size: 64px;
            font-weight: 400;
            letter-spacing: -2px;
            color: #333;
        }

        .vertical-align-content {
            background-color:lightyellow;
            height:100vh;
            display:flex;
            align-items:center;
            justify-content:center;
            text-align: center;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate3d(0, 100%, 0);
            }

            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        .fadeInUp {
            animation-name: fadeInUp;
        }

        .animated {
            animation-duration: 1s;
            animation-fill-mode: both;
        }

        .animated.delay {
            animation-delay: 0.3s;
        }

        @media (max-width: 767.98px) {
            h1 { 
                font-size: 44px; 
            }
        }

        @media (max-width: 575.98px) {
            h1 { 
                font-size: 40px; 
            }
        }

    </style>
</head>

<body>

    <div class="vertical-align-content">
        <h1 class="fadeInUp animated delay">Welcome to <strong>Powerleakin</strong></h1>
    </div>

    <script>
        document.getElementsByClassName("vertical-align-content")[0].setAttribute('style', 'height: '+window.innerHeight+'px');
    </script>
</body>
</html>