.cImg {
    display: block;
    height: 200px;
}

#carousel {
    width: 100%;
    overflow: hidden;
}

article {
    display: flex;
    min-width: 500%;
    animation: bannermove 300s linear infinite;
}

article.paused {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

div {
    width: 100%;
}

.ulc {
    display: flex;
    background: rgba(255, 0, 0, 0);
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

@keyframes bannermove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}