<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  background: #000;
  color: #fff;
  
  height: 100%;
}
body {
  height: 100%;
}

#video-viewport {
 display: block;
position: absolute;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
}
video {
 min-width: 100%;
 min-height: 100%;
z-index: -100;
background-position: center;
background-size: cover;
}

.fullsize-video-bg {
  height: 100%;
  overflow: hidden;
     position: relative;
}

.fullsize-video-bg:before {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.fullsize-video-bg:after {
  content: "";
    background-size: 3px 3px;
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 300px;
  z-index: 1;
}

.fullsize-video-bg .inner {
  display: table; 
  width: 100%;
  max-width: 24em;
  height: 100%;
  margin: 0 auto;
  padding: 0px 0px;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}
.fullsize-video-bg .inner &gt; div {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  padding: 0 2em;
}

::-webkit-media-controls {
  display:none !important;
}

</pre></body></html>