.item-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 91%;
    max-width: 900px;
    justify-content: center;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
}

.item {
    max-width: 200px;
    max-height: 400px;
    text-align: center;
    flex: 1 1 0px;
}
.item:hover {
    cursor: pointer;
}
.item > * {
    /* text cutoff styling */
    text-overflow: ellipsis;
    display: inline-block;
    width: 190px;
    white-space: nowrap;
    overflow: hidden;
}

.item > img {
    max-height: 200px;
    max-width: 200px;
}