html,body {
    width:100vw;
    height: 100vh;
    margin: 0;
	overflow: hidden;
}
#videoBG {
    position:fixed;
    z-index: -1;
}
@media (min-aspect-ratio: 16/9) {
    #videoBG {
        width:100%;
        height: auto;
    }
}
@media (max-aspect-ratio: 16/9) {
    #videoBG { 
        width:auto;
        height: 100%;
    }
}

#color-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: #03a9f4;*/
  background: black;
  mix-blend-mode: overlay;
}

#textdiv {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@font-face {
font-family: "BrushyScript";
src: url("https://koehne.info/BrushyScript.otf") format('truetype');

}


h1 {
  text-align: center;
  font-size: 6rem;
  font-family: 'BrushyScript';
  color: white;
  text-shadow:
    -1px -1px 0 #000000,
    1px -1px 0 #000000,
    -1px 1px 0 #000000,
    1px 1px 0 #000000,  
    -2px 0 0 #000000,
    2px 0 0 #000000,
    0 2px 0 #000000,
    0 -2px 0 #000000;
  padding: 20px;
  margin: 15px;
  z-index: 1;
}