html { 
  background: url(bg.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color:#000000;
  z-index: 200000;
  font-family: sans-serif;;

}

.logo {
	position:absolute;
	left:0;
	top: 30px;	
	
}
@media only screen and (max-width: 400px) {
  .logo {
    width:50%;
  }
}
.stoerer {
	position:absolute;
	right:20px;
	top: 20px;
	width:100px;	
}

.button {
  -moz-box-shadow: 0px 0px 10px rgba(68, 68, 68, 0.9);
  -webkit-box-shadow: 0px 0px 10px rgba(68, 68, 68, 0.9);
  box-shadow: 0px 0px 10px rgba(68, 68, 68, 0.9);
  
  
  border-radius: 4px;
  color: #fff;
  background-color: #adb419;
  border: none;
  font-size: 28px;
  padding: 20px;
  width: 300px;
margin-left:auto;
margin-right:auto;
  cursor: pointer;
  margin-top:20px;

}

.button:hover{
  -moz-box-shadow: inset 0px 0px 10px rgba(68, 68, 68, 0.6);
  -webkit-box-shadow: inset 0px 0px 10px rgba(68, 68, 68, 0.6);
  box-shadow: inset 0px 0px 10px rgba(68, 68, 68, 0.6);

}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;

}

.button span a{

  color: #FFFFFF;

}
.button span:after {

  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;

  color: #FFFFFF;
}


.outer {
	
  display: table;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.middle {
  display: table-cell;
  vertical-align: middle;
width:50%;
text-align:center;
}

.inner {
	  -moz-box-shadow: 0px 0px 10px rgba(68, 68, 68, 0.9);
  -webkit-box-shadow: 0px 0px 10px rgba(68, 68, 68, 0.9);
  box-shadow: 0px 0px 10px rgba(68, 68, 68, 0.9);
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  width:calc(100% - 60px);
  background-color:#fff;
  opacity:.9;
  padding:20px;
  font-family: sans-serif;
  border-radius: 4px;
  font-size:18px;
  
}
@media only screen and (max-width: 400px) {
  .inner {
    font-size:12px;
  }
}
