@import url(https://fonts.googleapis.com/css?family=Roboto:300);
html, body {
  height: 100%;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  
}

.wrapper {
  display: table;
  height: 100%;
  width: 100%;
  text-align: center;
  position:relative;
  
}

.wrapper::after {
  
    content: "";
  background: url(webb.png);
  opacity: 0.5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1; 
  
  }


.wrapper .inner {
  display: table-cell;
  vertical-align: middle;
}
.wrapper .counts {
  display: block;
  width: 200px;
  margin: 0 auto;
  font-size: 72px;
  margin-bottom: 20px;
}
.wrapper .btn {
  position: relative;
  width: 200px;
  display: block;
  margin: 0 auto;
  color: #fff;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: #fd5c00;
  padding: 20px 0;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  -moz-box-shadow: 0px 9px 0px #cc4a00;
  -webkit-box-shadow: 0px 9px 0px #cc4a00;
  box-shadow: 0px 9px 0px #cc4a00;
}
.wrapper .btn:active, .wrapper .btn:focus {
  -moz-box-shadow: 0px 2px 0px #AD1457;
  -webkit-box-shadow: 0px 2px 0px #AD1457;
  box-shadow: 0px 2px 0px #AD1457;
  top: 7px;
  position: relative;
}
.wrapper p {
  margin-top: 30px;
}
.wrapper p a {
  color: #777;
  text-decoration: none;
}