.body {
	margin:0px;
	border: 0px;
	padding: 0px;
}
.video-container {
  position: relative;   /* establishes positioning context */
  width: 100%;          /* adjust to your layout */
       /* optional: limit size */
  margin: 0 auto;       /* center the whole container on page */
  height: 100%;
  overflow:hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  display: block;
}

.video-container .overlay {
	position: absolute;
	top: 50%;             /* move to vertical center */
	left: 50%;            /* move to horizontal center */
	transform: translate(-50%, -50%); /* offset by half its own size */
	z-index: 2;           /* ensure it sits above the video */
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #000;
	text-align: center;
}
video {
	margin:0px;
	border: 0px;
	padding: 0px;
}
a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #333;
	text-decoration: none;
}