.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.card {
    box-shadow: 0 0 8px 2px #000;
    margin: 1rem;
    background-color: whitesmoke;
}

.card img {
    max-width: 300px;
    max-height: 300px;
    min-height: 300px;
}

.card:hover {
    box-shadow: 0 0 15px 2px #348cf1;
}

.card-text {
    padding: 0.5rem;
    background-color: #348cf1;
}

.card-text p.title {
    text-transform: Uppercase;
    margin: 0.5rem;
}

.card-text p.priceTitle {
    padding-left: 0.5rem;
    margin: 0.7rem 0rem;
}

.card-text div.price {
    text-align: center;
    margin-bottom: 0.5rem;
}

.card-text ul {
    list-style: none;
}


.card-description {
    display: flex;
    flex-wrap: wrap;
    font-size: 12pt;
    width: 243px;
    justify-content: space-between;
    padding-bottom: 1rem;
}

.card-text i {
    color:#000;
    margin-right: 0.2rem;
}

.card-description div {
    flex: 1 1 121px;
}

.card hr {
    border: 0;
    border-bottom: 1px solid #000;
}