body {
    margin: 0;
    font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video--background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1000;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 0;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content img {
    background-color: rgba(255, 255, 255, .5);
    border-radius: .5em;
    padding: 0 1em;
    max-width: 75%;
}

footer {
    color: #fff;
    text-align: center;
    padding: 1em .5em;
    font-size: .75em;
}

a {
    color: #fff;
}
