* {
	box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: #000;
}

.content {
    margin: 20px auto;
    width: 100%;
    max-width: 960px;
    padding: 30px 40px;
}

h1 {
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 50px;
    text-align: center;
}

p {
    margin: 0 0 30px 0;
    font-size: 22px;
    line-height: 1.4;
}

p:last-child {
	margin-bottom: 0;
}

video {
    background-size: cover;
    width: 100%;
    height: 100%;
    transition: none;
    text-align: inherit;
    line-height: 0px;
    border-width: 0px;
    margin: 0px;
    padding: 0px;
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 8px;
    display: block;
    visibility: inherit;
    opacity: 1;
}

video.fullscreen {
    background-size: cover;
    width: 100%;
    height: 100%;
    transition: none;
    text-align: inherit;
    line-height: 0px;
    border-width: 0px;
    margin: 0px;
    padding: 0px;
    display: block;
    /*  */
    position: fixed;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    min-width: 100%; 
    min-height: 100%;
    overflow: hidden;
    z-index: -100;
    object-fit: cover;

    /* position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%; */

    /* position: relative; */
    /* width:100%; */
    /* height:100%; */
    /* object-fit:none; */
    /* object-position: 50% 50%; */
    /* object-position: 0 0; */
}
/* 
contain – the video will be scaled to fit the container while preserving the aspect ratio, letterboxing will be present around the video
cover – the video is scaled to fill the container while preserving the aspect ratio, the video will be clipped
fill – the video is scaled to fill the container without preserving the aspect ratio, the video will be stretched
none – video is not resized
*/


/* Als je je telefoon neerlegt. */
@media only screen and (min-device-width: 480px) 
                   and (max-device-width: 640px) 
                   and (orientation: landscape) {
    object-fit: contain;
    flex-box
}

img.invert-img:hover {
        -webkit-filter: invert(100%) !important;
}

img {
    border:0;
}

div#logo {
    margin-left:25px;
    margin-top: 40px;
}

div#table {
    margin-left:25px;
    width: 250px;
}

div#table div {
    display:inline;
}

a {
    text-decoration:none;
}
