/* CSS Document */
@charset "UTF-8";

@keyframes oh-no {
  20%  { transform: translateX(4px);  }
  40%  { transform: translateX(-4px); }
  60%  { transform: translateX(2px);  }
  80%  { transform: translateX(-1px); }
  100% { transform: translateX(0);    }
}

.oh-no {
animation-name: oh-no;
animation-duration: 1s;}

.oh-no:hover {
  animation: wiggle 1s ease;
  animation-iteration-count: 1;
}
