/*Background image index*/

@font-face {font-family: HLT_Finura_Roman; src: url(Source/font/HLT Finura-Roman.ttf);}

@font-face {font-family: HLT_Geotica_2012; src: url(Source/font/HLT Geotica 2012.ttf);}




body {
  margin: 0;
  background: #000; 
}
video { 
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
 background: url('') no-repeat;
  background-size: cover;
  transition: 1s opacity;
}
.stopfade { 
   opacity: .5;
}

#introduction { 
  font-family: HLT_Geotica_2012;
  font-weight:100; 
  background: rgba(1, 4, 35, 0.2);
  color: white;
  padding: 2rem;
  width: 300 px;
  height: 300px;
  margin:2rem;
  float: left;
  font-size: 1.3rem;
  margin-top: 200px;
  line-height: 170%;
  text-shadow: horizontal-offset vertical-offset blur color;
  
}

h1 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-top: 0;
  letter-spacing: .3rem;
}

a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  background:rgba(0,0,0,0.5);
  padding: .5rem;
  transition: .6s background; 
}
a:hover{
  background:rgba(0,0,0,0.9);
  color: rgb(255, 255, 102);
  font-weight:bold;
}

.wrap{
	width: 200px;
	margin:150px auto;
	
}

.type-wrap{
	margin:10px;
	padding:20px;
	background:rgba(0, 0, 0, 0.7);
	border-radius:5px;
	border:#CCC 1px solid;
	text-align: center;
}

#type-string: {
	font-family: HLT_Geotica_2012;
	line-height: 150%;
}

shake:hover {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}



@media screen and (max-width:320px){   
#introduction {

    height: 500px;
    margin: 2rem;
    font-size: 2rem;
    margin-top: 100px;
	
}

video {display: none;}

}
