body {
  text-align: center;
  padding: 100px;
}

.button {
  display: inline-block;
  background:#623E36;
  color: #fff;
  text-transform: uppercase;
  padding: 30px 50px;
  border-radius: 7px;
  box-shadow: 0px 22px 13px -13px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
}
.button:hover {
  box-shadow: 0px 50px 30px -30px rgba(0, 0, 0, 0.2);
  -webkit-transform: translate(0px, -20px) scale(1.2);
          transform: translate(0px, -20px) scale(1.2);
}