<!DOCTYPE html>
<html lang="en">
<head>
    <meta name="HandheldFriendly" content="True"/>
    <meta name="MobileOptimized" content="320"/>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700" rel="stylesheet">
    <style rel="stylesheet">
        * {
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          box-sizing: border-box;
        }
        body {
            background-image:url(/css/images/background.jpg);
            background-repeat:no-repeat;
            background-size:cover;
            font-family: "Montserrat", sans-serif;
            text-align:center;
            height:100%;
            height:100vh;
        }
        .logo {
            position: absolute;
            left: 30px;
            top: 20px;
        }
        .container {
            padding:40px;
            transform:translate(-50%, -50%);
            position:absolute;
            width:100%;
            top:50%;
            left:50%;
        }
        .headline, .message {
            height: 100%;
            width: 100%;
            color: white;
        }
        .headline {
            font-weight: 700;
            font-size: 55px;
            padding-bottom:40px;
        }
        .message {
            font-weight: 400;
            font-size: 25px;
        }
        .message a{
           color:#fff;
        }
        @media only screen and (max-width: 767px) {
          .logo {
              left: 20px;
              top:15px;
              width:180px;
              height:auto;
          }
          .headline {
              font-size: 35px;
              padding-bottom:20px;
          }
          .message {
              font-size: 20px;
          }
        }
    </style>
</head>
<body>
<img class="logo" src="/css/images/lc-logo-light.png"/>
<div class="container">
    <div class="headline">Oops, something went wrong :(</div>
    <div class="message"><a href="https://www.limecube.co">Click here</a>&nbsp;to return to our main site.</div>
</div>
</body>
</html>
