/* CSS Document */

#header{
	
	margin-left: 20px;
	margin-top: 10px;
	position: absolute;
	

}
logo{
	width: 200px;
	margin-left: 20px;
	margin-top: 10px;
	margin-right: 10px;
	
}
.pageName{
	position: relative;
	margin-top:auto;
	Margin-bottom:auto;
	
}
.container {
  display:inline-flex;
}
#logoimage{
	width:200px;
	height:100px;
	margin-right:10px;
}

@media only screen and (max-width: 500px){

	.pagename{
		font-size: 20;
	}
}

@media all and (max-width: 959px) {
  .desktop {
    display: block;
  }
  .mobile {
    display: none;
  }
}

@media all and (max-width: 479px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
}
.wrap {
   float: left; 
   padding-right: 15 px;
  }

#videosubstitute{display:block;width:auto;height:100%;}
html, body {
    height: 100%;
    margin: 0;
}
#videowrapper{  
    position: relative;
    overflow: hidden;
} 

#fullScreenDiv{
   /* min-height: 100%; 
    height: 100vh;
    width: 100vw;
    padding:0!important;
    margin: 0!important;
    background-color: gray;
    position: relative;*/
	
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%; 
  overflow: hidden;
	
}

/*#video{    
width: 100vw; 
height: auto;
margin: auto;
display: block;
}*/

.fullScreenDiv video {
  /* Make video to at least 100% wide and tall */
  min-width: 100%; 
  min-height: 100%; 

  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;

  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
@media (min-aspect-ratio: 16/9) {
  #video{
    width: 100vw; 
    height:auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  #video {
    height: 100vh; 
    width:auto;
    margin-left: 50vw;
    transform: translate(-50%);
  }
}

#videoMessage{width: 100%; 
height: 100%;
position: absolute; 
top: 0; 
left: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}

.styling *{ margin:0.2em; text-align:center;color:#ffffff;}
.styling h1{font-size: 3em; text-shadow: 2px 2px 2px #000000;}
.styling h2{font-size: 1.5em;}
.styling h3{font-size: 1.2em;}
.videoClick a{padding:0.2em 0.5em;border-radius:0.5em;color:#3F392B;background-color:rgba(241, 241, 241, 0.45);font-size: 1.7em;cursor:pointer;cursor:hand}
.blur{filter: blur(0.5rem);}