/*  Coding from  https://css-tricks.com/full-page-background-video-styles/    */

video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
  }
  
  html, body {
    height: 100%;
  }
  html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 150%;
    line-height: 1.4;
  }
  body {
    margin: 0;
  }
  
  .viewport-header {
    position: relative;
    height: 50vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  h1 {
    font-family: 'Syncopate', sans-serif;
    color: #eb8810;
    text-transform: uppercase;
    letter-spacing: 3vw;
    line-height: 1.2;
    font-size: 3vw;
    text-align: center;
  }
  h1 span {
    display: block;
    font-size: 10vw;
    letter-spacing: -0.8vw;
  }
  
  div {
    text-shadow: 2px 2px 4px black;
    width: 80vw;
    left: 10%;
    height: 40vh;
    overflow: auto;
    background-color:rgb(100, 100, 100);opacity:0.6;
    color: white;
    position: relative;
    padding: 1rem;
  }