.slideshow {
  width: 100vw;
  height: 100vh;
  overflow: hidden; }

.slideshow-image {
  position: relative;
  width: 100%;
  height: 100%;
  background: no-repeat 50% 50%;
  background-size: cover;
  animation-name: kenburns;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 20s;
  opacity: 1;
  transform: scale(1.2); }
  .slideshow-image:nth-child(1) {
    animation-name: kenburns-1;
    z-index: 0; }

@keyframes kenburns-1 {
  0% {
    opacity: 1;
    transform: scale(1.2); }
  1.25% {
    opacity: 1; }
  98.75% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: scale(1); }
  98.75% {
    opacity: 0;
    transform: scale(1.2025); }
  100% {
    opacity: 1; } }
.slideshow-image h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 99;
  text-align: center; }
  .slideshow-image h1 small {
    display: block;
    text-transform: lowercase;
    font-size: .7em; }
    .slideshow-image h1 small:first-child {
      border-bottom: 1px solid rgba(0, 0, 0, 0.25);
      padding-bottom: .5em; }
    .slideshow-image h1 small:last-child {
      border-top: 1px solid rgba(0, 0, 0, 0.25);
      padding-top: .5em; }
