
@keyframes bloom-parallax {
  from { transform: translateY(0px); }
  to { transform: translateY(-200px); }
}

.bloom-motion-image {
  animation: bloom-parallax linear both;
  animation-timeline: scroll(root);
  
  animation-range: entry 0% exit 100%;
}