*|*:not(:root):fullscreen {
	position:fixed !important;
	top:0 !important; 
	right:0 !important; 
	bottom:0 !important; 
	left:0 !important;
	margin:0 !important;
	box-sizing:border-box !important;
	min-width:1920px !important;
	max-width:none !important;
	min-height:1080px !important;
	max-height:none !important;
	width:100% !important;
	height:100% !important;
	transform:none !important;
	background: white;

/* intentionally not !important */
object-fit:contain;
}

iframe:fullscreen {
	border: none !important;
	padding: 0 !important;
}

::backdrop {
	position: fixed;
	top: 0; 
	right:0; 
	bottom:0; 
	left:0;
}

*|*:not(:root):fullscreen::backdrop {
	background:black;
}

body {
	margin: 0;
	padding: 0;
	background: blue;
	overflow: hidden !important;
	cursor: none;
	width: 100% !important;
	height: 100% !important;
}
.wrapper {
	margin: 0;
	padding: 0;
	min-width: 100%;
	min-height: 100%;
	width: 100% !important;
	height: 100% !important;
}
#myVideo {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0 auto;
	padding: 0; 
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: initial;
}
#myVideo:-webkit-full-screen {
	min-width: 100%;
	width: 100%;
	min-height: 100%;
	height: 100%;
}