.container {
  text-align: center;
  margin-top: 100px;
}

/* Animasi */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate__slideInLeft {
  animation-name: slideInLeft;
  animation-duration: 2s;
}

/* Animasi */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate__slideInRight {
  animation-name: slideInRight;
  animation-duration: 2s;
}
/* slideInUp */
@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate__slideInUp {
  animation-name: slideInUp;
  animation-duration: 2s;