/* Reset */
*, *::after, *::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/* Fonts */
@font-face {
    font-family: "TUI Type";
    src: url('../fonts/tui-bold.woff2') format('woff2'),
        url('../fonts/tui-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
/* Style */
body {
    font-family: "TUI Type", Calibri, Arial, sans-serif;
    font-size: 1em;
    font-weight: normal;
    height: 100vh;
    overflow: hidden;
    color: #092a5e;
    background-color: #70cbf4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
::selection {
    background-color: #70cbf4;
}
h1 {
    font-size: 2.5em;
    margin-top: 30px;
    padding: 30px;
    font-weight: 700;
    display: inline-block;
    background-color: rgba(255, 255, 255, .75);
}
.logo {
    width: 250px;
    margin-top: 20px;
}
.content {
    position: fixed;
    left: 0;
    top:0;
    width: 100vw;
    z-index: 1;
    text-align: center;
}
#video-container{
    opacity: 0;
    transition:opacity ease 1s;
}
#video-container.active{
    opacity: 1;
}
.video {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    overflow: hidden;
}
footer {
    display: block;
    position: fixed;
    left: 0;
    bottom: 30px;
    width: 100vw;
    z-index: 1;
    text-align: center;
}
footer svg {
    fill: #092a5e;
    height: 40px;
    width:40px;
}
footer a {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
    text-decoration: none;
}
footer a:focus svg, footer a:hover svg {
    fill: #fff;
}
/* Small screen, mobile & Tablet */
@media screen and (max-width: 1024px){
    .video{
        height: 100%;
    }
}
/* Mobile */
@media screen and (max-width: 736px) {
    .logo {
        width: 150px;
    }
    h1 {
        font-size: 1.5em;
        margin-top: 10px;
        padding: 10px;
    }
    footer {
        bottom: 10px;
    }
    footer a {
        margin: 0 5px;
    }
}