* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marquee {
    width: 100;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    list-style: none;
    animation: scrolling 90s linear infinite;
}

.marquee-item {
    height: 160px;
    width: 160px;
    flex-shrink: 0;
}

.marquee-image {
    height: 100%;
    width: 100%;
    white-space: nowrap;
}

@keyframes scrolling {
    0% { transform: translateX(0); }
    100% { transform: translatex(-2000px); }
}