.fast {
  padding: 10px 20px;
  background-color: #e67e22;
  color: white;
  border: none;
  border-radius: 4px;
  transition-duration: 0.25s;
  transition-property: all;
  cursor: pointer;
  display: inline-block;
  margin: 5px;
}

.fast:hover {
  background-color: #d35400;
  transform: translateY(-2px);
}