main{
    display: flex;
    flex-direction: column;
    width: 90vw;
}

.shop-release-list {
    display: flex;
    flex-direction: row;
}

.card-container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.card {
    flex: 1 1 auto;
    padding: 20px;
    border-radius: 6px;
    transition: background-color 350ms ease;
}

.card:hover {
    background-color: rgb(175, 175, 175, 0.07);
}

