﻿
.StuffGrid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

    .StuffGrid a {
        text-decoration: none;
    }



    .StuffCard {
        margin: 2px 1px 5px 1px;
        padding: 10px 10px 5px 10px;
        position: relative;
        width: 300px;
        height: 400px;
        /*background: #232323;*/
        border-radius: 0px;
        overflow: hidden;
        border: solid 1px rgb(245 245 245);
        transition: box-shadow 0.5s;
    }

    .StuffCard:hover {
        
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.02), 0 6px 20px 0 rgba(0, 0, 0, 0.10);
    }

.StarChecked {
    color: orange;
}

.StarUnChecked {
    color: bisque;
}

.StuffCard-stuffName {
    color: #756b6b;
    font-size: 12px;
    line-height: 1.95;
    margin-top: 15px;
    text-align: right;
}



.StuffCard-stuffPrice {
    color: #111111;
    font-size: 16px;    
    text-align: right;
}

.StuffCard-stuffPriceNumber {
    color: #111111;
    font-size: 20px;
    text-align: right;
}




