* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: Arial;
    font-size: 17px;
  }
  
  .home {
    height: 100vh;
    position: relative;
  }

  #myVideo {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;

  }
  
  .contain {
    position: fixed;
    top: 0;
    background: transparent;
    color: #f1f1f1;
    width: 100%;
    padding: 50px;
  }
  
