﻿@import url('/Content/reset.css');
@import url('https://fonts.googleapis.com/css?family=Inconsolata|Indie+Flower');

body, html, #content {
    width:100%;
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper {
    width: 80%;
    max-width: 80vw;
    aspect-ratio: 16 / 9;
    position: relative;
}

.video-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

video {
    width: 100%;
    height: 100%;
    display: block;
}
@media only screen and (max-width:576px) {
    .video-wrapper {
        width:100%;
        max-width:none;
    }
}
