/**** GENERAL AND FONTS ***/

html {
	margin: 0px;
	padding: 0px;
	background-color: transparent!important;
	font-family: "Helvetica Neue", Arial, sans-serif!important;
}
body {
	width: 100vw;
	height: 100vw;
	margin: 0px;
	overflow: scroll;
	overflow-x:hidden;
	background-color: #86b1e1;
}
#container{
  position: relative;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  padding: 50px;
  overflow-x:hidden;
  margin-bottom: 100px;
  left: 0px;
  top:0px;
}

#theVideo {
   position:fixed; 
   left:0px!important;
   top:0px!important;
   float:left;
   min-width:100vw;
   min-height:100vh;
    width: 100%;
    height: 100%;
    transition:opacity 1s ease;
    opacity:0;
    pointer-events: none; /* make the pseudo class click-through */
    
}
 
  .video-embed {
    object-fit: fill;
    cursor: pointer;
    z-index:-1!important;
  }

#info {
	position: relative;
	width:calc(60vw - 50px);
	height: auto;
	font-size: 16px;
	overflow:scroll;
	overflow-x:hidden;
	padding-bottom: 20px;
	line-height:20px;
	font-weight: 800!important;
	color:white;
}
.column {
	position: relative;
	float: left;
	display: inline-block;
	width: calc(50% - 40px);
	height:auto;
	padding-right: 40px;
}
#enter {
	position: relative;
	float:left;
	text-align:center;
	transition:all 1s ease;
	opacity:1;
	font-size: 16px;
	font-weight: 800!important;
	border: 3px solid white;
	padding: 20px;
	margin-bottom:200px;
	display: inline-block;
	z-index: 9999!important;
}
#enter a {
	transition:all 1s ease;
	text-decoration:none;
	color: white;

}
#enter:hover {
	border: 3px solid white;
	background-color:white;
	padding: 20px;
}
#enter a:hover{
	color:#86b1e1;

}
#notice {display:none;}


/* Portrait */
@media screen and (orientation: portrait)  { 

      #notice {display:inline-block;}
      .column, #enter {display:none;}
}

/* Landscape */
@media screen and (orientation: landscape) {
     
      #notice {display:none;}
      .column, #enter { display:inline-block;}
     

}

@media only screen and (min-device-width: 320px) and (max-device-width: 780px) {
    #info{
            width:calc(90vw - 50px);!important;  
        }
    
}
