.wobble-skew {
  padding: 10px;
  height: 42px;
  cursor: pointer;
  position: relative;
  border: none;
  color: black;
}

.wobble-skew:hover {
  animation-name: wobble-skew;
  animation-duration: 0.25s;
  animation-iteration-count: 2;
}

@keyframes wobble-skew {
  0% {
    transform: skew(0deg);
  }
  50% {
    transform: skew(10deg);
  }
  100% {
    transform: skew(-10deg);
  }
}