.slide {
    background-position: center center;
    background-size: cover;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: all 5s;
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);


    animation-name: kenBurns;
    animation-duration: 60s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    -webkit-backdrop-filter: blur(0px);

}

.slide:nth-child(2n) {
    animation-direction: alternate-reverse !important;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.7);
    }
}

.slide.active {
    opacity: 1;
    transition: all 5s;
    backdrop-filter: blur(0px);
}

.slide .info {
    background-color: rgba(255, 255, 255, 0.7);
    color: #333;
    padding: 20px 15px;
    position: absolute;
    opacity: 0.1;
    top: 80px;
    left: 40px;
    text-align: center;
    width: 300px;
    max-width: 100%;
}

.slide.active .info {
    opacity: 1;
    transform: translateY(-40px);
    transition: all 0.5s ease-in-out 0.8s;
}

.slide .info h1 {
    margin: 10px 0;
}

.slide .info p {
    letter-spacing: 1px;
}

.eraser {
    background: #f5f5f5;
    position: absolute;
    transition: transform 0.5s ease-in-out;
    opacity: 0.95;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100%;
    z-index: 100;
}

.eraser.active {
    transform: translateX(-100%);
}

.buttons-container {
    display: none;

}



@media (max-width: 400px) {
    .slide .info {
        top: 100px;
        left: 10px;
    }
}