html {
  box-sizing: border-box;
  height:100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

figure {
  margin: 0;
}

.absolute-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 100%;
  width: 100%;
  background-position: left top;
  background-attachment:fixed;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  box-sizing: content-box;
}

.fog {
  position: relative;
  position: absolute; top:0; /*ben*/
  height: 100vh;
  width: 100%;
  background-color: #000;
}
.fog__container {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.fog__img {
  position: absolute;
  height: 100vh;
  width: 300vw;
}


@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-200vw, 0, 0);
            transform: translate3d(-200vw, 0, 0);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-200vw, 0, 0);
            transform: translate3d(-200vw, 0, 0);
  }
}

.spinner {
    text-align:center;
    height:100%;
	background-color:rgba(0,0,0,0);
	position:absolute;
	top:0;
	left:49%;
	z-index:9999;
 }
 .spinner img {
	position: absolute;
	height:50px;width:50px;
    top: 50%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
 }
 
 .info, .home{
    text-align:left;
    height:50px;
	background-color:rgba(0,0,0,0);
	position:absolute;
	top:10px; left: 10px;
	z-index:9999;
	cursor: pointer !important;
 }	 
  .enterin{
    text-align:left;
    height:50px;
	background-color:rgba(0,0,0,0);
	position:absolute;
	top:10px; right: 10px;
	z-index:9999;
	cursor: pointer !important;
 }	
.nav{
	margin: 0 auto;
    text-align:center;
    height:50px;
	background-color:rgba(0,0,0,0);
	position:absolute;
	top:10px; left: 45%;
	z-index:9999;
 }	 
 
.nav, .home {
	 cursor: pointer !important;
 }
 
 .maintitle{
	font-family: 'Poor Story', cursive;
	display: block; width:100%;
	color:white;
	cursor: pointer !important;
	text-shadow: 2px 2px #fbb53f;
	margin-top:15px;
 }	 
  .subtitle{
	font-family: 'Arial';
	display: block;
	color:#aaaaaa;
	width:75%;
	font-size:2vw;
	font-size:20px;
	margin-left:50px;margin-right:50px;
	margin-top:-20px; /*ben test*/
 }	
 body {
  margin: 0px 0px 0px 0px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 100%;
  width: 100%;
  background-image: url("../img/background.jpg");
  background-color: black;
  background-attachment:fixed;
  /*background: url("../img/background.jpg") no-repeat center center fixed;*/
  background-repeat: no-repeat;
  /*overflow: hidden;*/
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.lite-modal {
  padding: 40px;
  width:75%;
  background-color: white;
  font-family: sans-serif;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  line-height: 1.6em;
}

/* Rotate */
.hvr-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-rotate:hover, .hvr-rotate:focus, .hvr-rotate:active {
  -webkit-transform: rotate(8deg);
  transform: rotate(8deg);
}

/* Push */
@-webkit-keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.hvr-push {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-push:hover, .hvr-push:focus, .hvr-push:active {
  -webkit-animation-name: hvr-push;
  animation-name: hvr-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
