.box p,
.box img {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.8s ease;
}


.box p.show,
.box img.show {
  opacity: 1;
  transform: translateY(0);
}