#azcf img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
    width: 400px;
    height: 250px;
    animation-name: azcf3FadeInOut;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite; 
    animation-duration: 12s;
    position:absolute;
    object-fit: contain;
}

#azcf img:nth-of-type(1) {
    animation-delay: 8s;
}

#azcf img:nth-of-type(2) {
    animation-delay: 4s;
}

#azcf img:nth-of-type(3) {
    animation-delay: 0s;
}

@keyframes azcf3FadeInOut {
    0% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    33% {
        opacity: 0;
    }
    92% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
