.button {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 15px;
  font-family: Tahoma, Geneva, sans-serif;
  width: 80%;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  background-color: #E6660F;
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px #999;
}

.button:hover {background-color: #e67e38}

.button:active {
  background-color: #e67e38;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}


