body {
    background: #43cea2; /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #43cea2 , #185a9d); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #43cea2 , #185a9d); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */        
}
.container {
    padding: 100px 40px 40px 100px;
    text-align: center;
}
img {
    max-width: 400px;
}

h1 {
    font-weight: 100;
    color: rgba(255, 255, 255, .8);
    font-size: 50px;
    margin-bottom: 80px;
}

.button {
  display: inline-block;
  box-sizing: border-box;
  box-align: center;
  vertical-align: middle;
  line-height: 30px;
  margin: 0;
  padding: 6px 1em;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 2px;
  color: #fff;
  letter-spacing: 1px;
  transition: background 200ms, border 200ms, box-shadow 200ms, color 200ms;
}
.button:hover {
    cursor: pointer;
    border-color: transparent;
    box-shadow: inset 0 0 transparent, 0 0 0 3px #fff;
    text-decoration: none;
    background
}
  // Active
.button:active {
    box-shadow: inset 0 0 transparent, 0 0 0 3px #999;
    border-color: transparent;
    background: #fafafa;
}
.button:focus {
    outline: none;
}
.button:after {
    color: #85898c;
}
.button:hover, &:active, &:focus, &:after {
    text-decoration: none;
}