
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>App not found</title>
        <link href="https://fonts.googleapis.com/css?family=Oxygen" rel="stylesheet">
        <style>
            * {
                margin: 0;
                padding: 0;
                outline: 0;
                box-sizing: border-box;
            }

            html, body {
                width: 100%;
                height: 100%;
                background-color: #92a8d1;
                background-image: -webkit-linear-gradient(top, #92a8d1 40%, #f6cbca 100%);
                color: white;
                -webkit-font-smoothing: antialiased;
            }

            .container {
                width: 100%;
                padding: 32px;
                margin: 0 auto;
                position: relative;
                top: 50%;
                transform: translateY(-50%);
                text-align: center;
            }

            .code {
                font-size: 96px;
                font-family: 'Oxygen', sans-serif;
                line-height: 188px;
            }

            .message {
                font-size: 20px;
                opacity: 0.8;
                font-family: 'Oxygen', sans-serif;
            }

						.logo {
							position:absolute;
							bottom:10px;
							left: 10px;
						}

						a:link, a:visited, a:hover {
							color:#FFF;
						}
        </style>
    </head>
    <body>
        <div class="container">
            <img src="cloud-white.svg" width="70">
						<br /><br />
            <p class="message">Nothing here yet. <br />Click <a href="https://vapor.cloud">here</a> to start your awesome project today</p>
        </div>
				<img src="vapor-cloud.png" class="logo" height="55" />
    </body>
</html>
