body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform-origin: center;
    z-index: 0;
    animation: kenBurns 30s ease-in-out infinite;
}

.slideshow-image.active {
    opacity: 1;
    z-index: 1;
    animation: kenBurns 30s ease-in-out infinite;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    33.3% {
        transform: scale(1.1) translate(-2%, 2%);
    }
    66.7% {
        transform: scale(1.1) translate(2%, -2%);
    }
}
