html, body {
    height: 100%;
    margin: 0;
	background:#FFF;
}

div#videoContainer {
    width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
	background:#FFF;
	
}

video#video {
    width: 100%;
	background:#FFF;
}

video:focus {
    outline: none !important;
}
video::-webkit-media-controls, video::-webkit-media-controls-enclosure {
    display: none !important;
}

@media screen and (max-width:768px) {
	
	div#videoContainer {
    width: 100%;
	max-width: 500px;
	background:#FFF;
	}
	
}