Hi @Jon104, thanks for your post. I took a look at the site, and it seems there is small issue with your video embed code, I would replace what you have now with:
Once you do that, your video will be affixed to the corner of your browser window, but since the video is not larger than the viewport, the whole video will not cover the screen… you need either some plugin to help you do that like some background video plugin, or you can try to use some custom css in your site Head (from Custom Code in Site Settings) and try pasting in the following css:
<style>
video {
-webkit-transform: scaleX(2);
-moz-transform: scaleX(2);
}
</style>
If that works, it is supposed to stretch the video, but I have not tried this, just saw this on stackoverflow.
You will have to play around with it.
I hope that helps, if not, let me know Cheers, Dave