/*
- Video Wrapper can be any element
- If the element is the height and width of the full screen this will still work
*/

.maxWidth200 {
  max-width: 5000px;
}

.videoWrapper {
   position: relative;
   padding-bottom: 56.25%;
   /* Equals 16:9 */
    height: 0;
}


.videoWrapper iframe {
  position: absolute;
      top: 0;
     left: 0;
    width: 100%;
   height: 100%;
}


