/* Micro Animations */

@keyframes movearrow {
  from { transform: translateY(0); }
  to { transform: translateY(-3px); }
}

@media screen and (prefers-reduced-motion: no-preference) {
  .download svg {
    overflow: visible;
  }
  .download:hover .download__arrow,
  .download:focus .download__arrow {
    animation-duration: 0.5s;
    animation-name: movearrow;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }

  .lightbox__link:hover svg,
  .lightbox__link:focus svg {
    transition: transform 0.2s linear, opacity 0.2s linear;
    transform: scale(1.2);
  }
}