@keyframes slidy {
    0% {
        left: 0%;
    }

    20% {
        left: 0%;
    }

    25% {
        left: -100%;
    }

    45% {
        left: -100%;
    }

    50% {
        left: -200%;
    }

    70% {
        left: -200%;
    }

    75% {
        left: -300%;
    }

    95% {
        left: -300%;
    }

    100% {
        left: -400%;
    }
}

body {
    margin: 10;
}

#slider {
    overflow: hidden;
}

#slider figure img {
    width: 20%;
    float: left;
    height: 350px;
}

#slider figure {
    position: relative;
    width: 500%;
    margin: 0px;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 10s slidy infinite;
    height: 250px;
}


/*===================================================
             sliding width
=========================================================*/

.slider {
    height: 350px;
    background-color: darkgreen;
}

.fullwidth {
    width: 100%;
    background-color: white;
}

/*==================================
css for my gallery
========================================*/