.scroller {
    display: flex;
    gap: 1rem;
    max-width: 100%;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.scroller ul {
    display: flex;
    flex-shrink: 0;
    flex-wrap: nowrap;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;

    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 1rem));
    }
}


.scroller:hover ul {
    animation-play-state: paused;
}


#top-img img {
    height: 200px;
    width: auto;
    max-width: none;
    border-radius: 8px;
    object-fit: cover;
}

.link-text {
    text-decoration: none;
    color: green;
}


.link-lore {
    padding-left: 16px;
}