@keyframes scale-up {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.scale-up {
  animation: scale-up;
  animation-duration: 1s;
}
