.btn-bouncy {
  cursor: pointer;
}
.btn-bouncy__text {
  display: block;
  padding: 15px 45px;
  border-radius: 15px;
  transform: translateY(-6px);
  transition: transform ease 0.1s;
}
.btn-bouncy:active .btn-bouncy__text {
  transform: translateY(-2px);
}
