.logoContainer {
    background-image: url(./resources/images/gallery/banner1.png);
    background-size: cover;
    animation: slidein 100s linear infinite;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-direction: normal;
}

@keyframes slidein {
    from {
        background-position: top;
        background-size: 1800px;
    }
    to {
        background-position: 2000px 0px;
        background-size: 1800px;
    }
}