/* Style the video: 100% width and height to cover the entire window */
#myVideo {
	object-fit: cover;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
  }
  
  /* Add some content at the bottom of the video/page */
  .content {
	position: fixed;
	bottom: 0;
	/*background: rgba(0, 0, 0, 0.5);*/
	color: #f1f1f1;
	width: 100%;
	padding: 20px;
  }
  
  /* Style the button used to pause/play the video */
  #myBtn {
	width: 200px;
	font-size: 18px;
	padding: 10px;
	border: none;
	background: #000;
	color: #fff;
	cursor: pointer;
  }
  
  #myBtn:hover {
	background: #ddd;
	color: black;
  }

  .box {
	background: rgba(0,0,0,.2);
	padding: 20px;
	-webkit-transition: background-color 400ms;
	transition: background-color 400ms;
  }
  
  .box:hover {
	background: rgba(0,0,0,.5);
  }

  .overlay-container {
	display: block;
	position: relative;
  }
  
  .overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0,0,0,.5);
	text-align: center;
	opacity: 0;
	-webkit-transition: opacity 400ms;
	transition: opacity 400ms;
  }
  
  .overlay-container:hover .overlay {
	opacity: 1;
  }
  
  a.readmore {
	font-size: 36px;
	line-height: 36px;
	color: white;
  }

  .vertical-middle {
	height: 100%;
	width: 100%;
	display: table;
  }
  
  .vertical-middle > div {
	display: table-cell;
	vertical-align: middle;
  }