body{ 
background: transparent url("back.jpg");  
font-family: 'Amatic SC', cursive;  
   margin:0 auto;
    display:block;
}  

#topbackground {
background: transparent url("topbackground.png"); 
height: 30px;  
width: 100%;
position: relative;
float: top;
padding: 0;
}

#bottombackground{
background: transparent url("topbackground.png"); 
height: 30px;  
width: 100%;
position: absolute;
bottom: 0;
padding: 0;
}  

#bottomtxt{
position: relative;
text-align: center;
vertical-align: middle;
font-size: 18px;
color: #7d94a3;
}

.center {
background-image: url("centershade2.png");
background-position: top;
background-repeat: no-repeat;
font-family: 'Amatic SC', cursive;
text-align: center;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width:790px;
height: 312px;
}

#contercont{
  top: -80px;
}


#centertop {
font-size: 35px;
color: #819090;
text-shadow: 4px 4px 4px #aaa;
font-weight: bold;
text-align: center;
width:790px;
height: 50px;
padding-top: 100px;
}

#centerbottom {
width: 790px;
font-size: 32px;
color: white;
text-align: center;
text-shadow: 4px 4px 4px #aaa;
background-image: url("centerbackground.png");
background-position: top;
background-repeat: no-repeat;
width:790px;
height: 50px;
}

#link{
position: relative;
margin-top: 35px;
}

.wrapper {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.button{
    text-decoration: none;
    text-align: center;
    color: #b9c1bf;
    border: 2px solid #b9c1bf;
    border-radius: 4px;
    position: relative;
    width: 150px;
    line-height: 40px;
    display: inline-block;
    overflow: hidden;
    font-size: 20px;
}
.button:before {
    content: "";
    background-color: #a7b1af;
    height: 100%;
    width: 40px;
    display: block;
    position: absolute;
    top: 0;
    left: -70px;
    transform: skewX(-45deg) translateX(0px);
    transition: none;
  }
.button:hover{
    background-color: #b8c7c7;
    color: white;
    border-bottom: 1px solid #a7b1af;
}

.button:hover:before{
    transform: skewX(-45deg) translateX(250px);
    transition: all 0.4s ease-in;
}