.project-grid.reveal.visible .project img {
  animation: project-image-zoom .9s cubic-bezier(.16, 1, .3, 1) both;
}

.project-grid.reveal.visible .project:nth-child(2) img { animation-delay: .12s; }
.project-grid.reveal.visible .project:nth-child(3) img { animation-delay: .24s; }

@keyframes project-image-zoom {
  from { transform: scale(1.16); }
  to { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .project-grid.reveal.visible .project img { animation: none; }
}
