header {
  position: relative;
  background-color: black;
  height: 100vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;

}

header .container {
  position: relative;
  z-index: 2;
}

header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(8, 86, 202, 0.623);
  opacity: 0.2;
  z-index: 3;
  box-shadow: inset 60px 60px 60px black, inset -60px -60px 60px black;
}

#page-top {
  box-shadow: 0px 0px 50px black;
}


@media (pointer: coarse) and (hover: none) {
  header {
    /*  
    background: url('https://source.unsplash.com/XT5OInaElMw/1600x900') black no-repeat center center scroll;
  }
  */
  header video {
    display: none;
  }
}