.slideshow {
}

.slideshow-image {
    background: no-repeat 50% 50%;
    background-size: cover;
    animation-name: kenburns-1;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 22s;
}

    .slideshow-image:first-child {
        background: no-repeat 50% 50%;
        background-size: cover;
        animation-name: kenburns-1;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        animation-duration: 35s;
    }

@keyframes kenburns-1 {
    0% {
        opacity: 1;
        transform: scale(1.1);
    }

    1.5625% {
        opacity: 1;
    }

    23.4375% {
        opacity: 1;
    }

    26.5625% {
        opacity: 0;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}
