

.video-container {
    min-width: 100%;
  	min-height: 100%;
    position: relative;
}

.video-container video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 0;
}

/* Just styling the content of the div, the *magic* in the previous rules */
.video-container .caption {
  z-index: 1;
  position: relative;
  text-align: left;
  color: #dc0000;
  padding: 10px;
}



#myVideo {
  position: float;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

#invertVideo {
  filter: invert(100%);
}


div.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: yellow;
  padding: 50px;
  font-size: 20px;
}
   
.myDIV {
	width: 100%;
	padding: 10px 0;
	margin-top: 0px;
	display: none;
}     
        
