.Animate .Shake {
  animation: Shake 0.4s;
}
.Animate .SlideBackground {
  animation: SlideBackground 6s ease-in-out infinite;
}
.Animate .Spin {
  animation: Spin 1.5s linear infinite;
}
@keyframes Shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  20%, 60% {
    transform: translate3d(-10px, 0, 0);
  }
  40%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes SlideBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes Spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
