button{
    font-family: "Object Sans";
    font-weight: 300;
    font-size: 10pt;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.item-cost {
    margin-right: 10px;
  }
  
  .remove-button {
    margin-left: 10px;
  }

.cart-item img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 1.5vh;
    box-shadow: 0 0 3px lightgrey;
}
.cart-item-details {
    display: flex;
    align-items: center;
    border: 3px solid black;
}
.shopping-cart-wrapper {
    position: relative;
    display: inline-block;
}

.shopping-cart-icon {
    width: 24px;
    vertical-align: middle;
    z-index: 0;
}

.cart-quantity {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -25%);
    font-size: 14px; /* Adjust the font size as needed */
    color: black; /* Adjust the color as needed */
    z-index: inherit;
}

.product-details {
    text-align: center;
    display: flex;
    align-items: center;
}
#outercontainer {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

#outercontainer h1{
    font-size: 48pt;
}

#cart-container {
    width: 800px;
}

#checkout {
    display: flex;
    height: 4vh;
    padding: 10px 20px;
    background-color: black;
    border: none;
    border-radius: 2vh;
    color: white;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    align-items: center;
    border: 1px solid white
}

