:root{
    --border-radius: 25px;
}
.shop{
    display: flex;
}

.shopItem{
    margin: 10px;
    width: 200px;
    height: 200px;
    background-color: #eeeeee;
    display: block;
    border: #888888 solid 1px;
    border-radius: var(--border-radius);
}
.shopImage{
    height: 150px;
    background-color: #ffffff;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}
.shopImage img{
    margin-top: -29px;
}
.itemDescription{
    display: flex;
    justify-content: space-between;
}
.itemName{
    margin-top: 10px;
    margin-left: 2px;
}
.itemPrice{
    margin-right: 2px;
}
.soldOut{
    background-color: #ff4545;
    text-align: center;
    text-shadow: black 0 0 3px;
    font-size: 25px;
    position: relative;
    width: 115%;
    top: 45%;
    left: -7%;
    z-index: 100;
    border-radius: var(--border-radius);
    rotate: -40deg;
}