doctype html
html(lang="en")
    head
        title #{title}
        style.
            html, body {
                background: #000;
                width: 100%;
                height: 100%;
            }
            video {
                top: 50%;
                left: 50%;
                max-width: 100%;
                max-height: 100%;
                position: absolute;
                transform: translate(-50%, -50%);
            }
    body 
        video(controls autoplay name="media")
            source(src="#{video}")
