/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    background-color: #031810;
}

.container {
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

section .container {
    padding: 0;
}

@media (min-width: 640px) { section .container { padding: 0 30px; } }


/* apply a natural box layout model to all elements, but allowing components to change */
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

@media (min-width: 640px) { .container { width: 640px; } }
@media (min-width: 768px) { .container { width: 768px; } }
@media (min-width: 1024px) { .container { width: 1024px; } }
@media (min-width: 1280px) { .container { width: 1280px; } }
@media (min-width: 1536px) { .container { width: 1536px; } }

header {
    padding-top: 30px;
}

.logo svg {
    height: 30px;
    width: auto;
}

@media (min-width: 640px) { .logo svg { height: 50px; } }


html, body { height: 100%; }

body {
    display: flex;
    flex-direction: column;
}

body > section {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.video-wrapper { position: relative; margin: 30px auto; width: 100%; max-width: 960px; }
.video-wrapper .video{ position: relative; height: 0; padding-top: 56.25%; background-color: #FFF; overflow: hidden; }
.video-wrapper .video video{ position: absolute; width: 100%; height: 100%; top: 0; left: 0; right: 0; bottom: 0; transform-origin: center; }
.video-wrapper button { transition: all 0.3s ease-in-out; cursor: pointer; appearance: none;border: none; border-radius: 0; background-color: transparent; width: 25%; position: absolute; bottom: 50%; left: 50%; transform: translate(-50%, 50%); z-index: 100; }
.video-wrapper button.playing,
.video-wrapper button.paused { bottom: 10px; left: 10px; transform: translate(0, 0); width: 50px;}
.video-wrapper button svg circle { transform: rotate(-90deg); transform-origin: center; }

@media (min-width: 640px) {
    .video-wrapper button.playing,
    .video-wrapper button.paused { bottom: 20px; left: 20px;}
}