﻿<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <title>Page Not Found</title>
        <style>
            body{
                background: black;
                padding: 0 0 0 0;
                margin: 0 0 0 0;
                height: 100%;
                width: 100%;
                overflow: hidden;
            }

            #bgvid {
                position: fixed;
                bottom: 0;
                left: 50%;
                min-width: 100%;
                min-height: 100%;
                margin-left: -960px;
                z-index: 2;
            }

            .lost
            {
                position: absolute;
                z-index: 3;
                width: 100%;
                text-align: center;
                
            }

            .lost h3
            {
                padding: 0 15px 0 15px;
                font-size: 3em;
                color: white;
                font-family: 'Ubuntu';
                text-shadow: 1px 1px 4px #000;
            }
            a
            {
                text-decoration: none;
                color: inherit;
            }
        </style>
        <link href='http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700' rel='stylesheet' type='text/css'>
        <script src="/js/vendor/jquery-1.11.1.min.js"></script>
    </head>
    <body>
    <div class="lost">
        <a href="/">
            <h3>It looks like you're lost.</h3>
            <h3>Click here to find your way.</h3>
        </a>
    </div>
    
        <video id="bgvid" autoplay loop muted>
            <source src="serge_looped.mp4">
        </video>
    <div style="background-image: url(404.jpg); background-position: center; background-size: cover; width: 100%; height: 100%; position: absolute;"></div>
    
    <script type="text/html">
        var video = document.getElementByID('bgvid');
        video.play();
    </script>
    </body>
</html>