﻿.scrolling-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    height: 90px;
    /*background-color: darkblue;*/
}

.scrolling-images {
    display: flex;
    animation: scroll 70s linear infinite;
    /*background-color: purple;*/
}



    .scrolling-images img {
        flex: 0 0 auto;
        height: 70px;
        width: 150px;
        margin-right: 10px;
        margin-top: 10px;
        border-radius: 15px;
    }

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}