/* Scroll item up on entry to view */
.come-in {
  transform: translateY(450px);
  animation: come-in 0.8s ease forwards;
}
.come-in:nth-child(odd) {
  animation-duration: 1s; /* So they look staggered */
}

@keyframes come-in {
  to { transform: translateY(0); }
}