@keyframes moveSlideshow {  
  100% { 
    -webkit-transform: translateX(-160%);
    -moz-transform: translateX(-4302px);
    transform: translateX(-4302px);
  }
}

/* Gallery-related stuff */

section.content > section.gallery {
  white-space: nowrap;
  overflow-x: hidden;
}

section.content > section.gallery > div.images {
  transform: translate3d(0, 0, 0); /* For performance improvements */
  position: relative;
  /*transition: transform 40s linear;
  will-change: transform;*/
  animation: moveSlideshow 40s linear infinite;
}

section.content > section.gallery > div.images > img {
  max-height: 25rem;
  margin-right: 2rem;
  display: inline-block;
}

/* Overrides */

section.content > h1 {
  margin-bottom: 5rem;
}
