@font-face{
  font-family: 'Kungfont';
  src: url(../fonts/Kungfont.ttf);
  font-style: normal;
  font-weight: 100;
}

body{
  color: white;
  font-family: Kungfont;
  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Likely future */      
}

.section {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section h1 {
  text-align: center;
  font-size: 10vw;
  padding: 20px;
  margin: 15px;
  z-index: 1;
  opacity: 0.7;
}

h1{
  background: black;
  color: white;
  mix-blend-mode: multiply;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
}

.color-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: #12c2e9;
  background: -webkit-linear-gradient(to right, #f64f59, #c471ed, #12c2e9);
  background: linear-gradient(to right, #f64f59, #c471ed, #12c2e9);
  width: 100%;
  height: 100vh;
  opacity: 0.5;
}
