#cart-body{
    height: auto;
    background-color: white;
    border: 3px solid rgba(56, 54, 45, .8);

}

#cart-title {
    margin-top: 40px;
    letter-spacing: .5em;
    font-size: 1.5em;
    color: rgba(56, 54, 45, .9);
}

.cart-underline {
    height: 1px;
    width: 100%;
    background-color: black;
}

.cart-center{
    width: 70%;
    margin: auto;
}

.text-grid {
    padding-left: 200px;
    display: grid;
    grid-template-columns: 28% 40% 40%;
    grid-template-rows: 20% 10% 10% 10%;
}

.product-title {
    text-transform: uppercase;
}

.product-name {
   margin-top: 10px;
   font-weight: bold;
}

.quantity-title {
    text-align: center;
    text-transform: uppercase;
}

.item-quantity{
    text-align: center;
    margin-top: 10px;
}

.price-title {
    text-align: center;
    text-transform: uppercase;
}

.item-price{
    text-align: center;
    margin-top: 10px;
}

.delete {
    margin-top: 40px;
    padding-bottom: 50px;
}

.cart-item img {
    position: absolute;
    height: 140px;
    width: 140px;
}

.cart-item .cart-underline {
    margin-bottom: 50px;
}

#subtotal {
    padding-top: 20px;
}

#subtotal-title {
    position: absolute;
    padding-left: 50%;
}
#subtotal-price {
    text-align: right;
    padding-bottom: 50px;
}

#cart-buttons {
    display: grid;
    grid-template-columns: 40% 40%;
    grid-column-gap: 50px;
    padding-left: 10%;
    margin-bottom: 50px;

}


#continue-shopping {
    text-align: center;
    background-color: #fcf7f2;
    color: black;
    border: 2px solid black;
    padding-top: 5px;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-size: .9em;
}

#checkout {
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    background-color: rgba(56, 54, 45, .9);
    color: white;
    border: 2px solid rgb(150, 150, 150);
    text-transform: uppercase;
    font-size: .9em;

} 

#back {
    padding-top: 50px;
    
}

