/* borderless */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
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;
    vertical-align: baseline;
    box-sizing: border-box;
}

body {
  background-color: black;
}

/****************** VIDEO DE GEHELE ACHTERGROND OPVULLEN EN RESPONSIVE MAKEN ******/

.video-background {
    position: fixed;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
      background-color: black;
    opacity: 0;
  }
  
  .video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
  }
  
  @media (min-aspect-ratio: 16/9) {
    .video-background iframe {
      /* height = 100 * (9 / 16) = 56.25 */
      height: 56.25vw;
    }
  }
  @media (max-aspect-ratio: 16/9) {
    .video-background iframe {
      /* width = 100 / (9 / 16) = 177.777777 */
      width: 177.78vh;
    }
  }

  .video-background {
    animation: bgopacity 3s forwards;
        animation-delay: 1s;
    }
    
    @keyframes bgopacity {
    
    0% {
    opacity: 0%;
   
    }
    
    100% {
    opacity: 40%;
   
        }
    }

    .widg {
      opacity: 0;
      animation: IntroWidge 2s ease forwards;
        animation-delay: 0.3s;
        z-index: 100
    }
    
    @keyframes IntroWidge {

0% {
  opacity: 0;
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
}

100% {
  opacity: 100;
  transform: scale(1);
  -webkit-transform: scale(1);
}

    }