body{
    margin: 0;
    padding: 0;
    font-family: Futura, sans-serif, Arial;
    position: relative;
    min-height: 100vh;
    height: 100%;
}
body::before{
    content: "";
    position: absolute;
    background-image: url("../Assets/Header_Background.jpg");
    background-size: fill;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0.4;
    z-index: -2;
}
.items{
    display: grid;
    grid-template-columns: auto auto auto auto auto auto;
    height: 150px;
    width: auto;
    border: solid gray 1px;
    box-shadow: gray 2px 2px 5px;
    margin: 10px;
}
.items img.product{
    margin: auto;
    width: 125px;
    height: 125px;
    object-fit: fill; 
}
.items .title{
    margin: auto;
    text-align: center;
}
.items .description{
    margin-left: auto;
    margin-right: auto;
    overflow-y: auto;
    width: 350px;
    height: 50px;
}
.items .price{
    margin: auto;
}
.items .quantity{
    margin: auto;
    width: auto;
    height: auto;
}
.items .quantity:hover{
    box-shadow: ghostwhite 5px 5px 5px;
}
.items .delete{
    margin: auto;
    background-image: url("../Assets/bin-nobg.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
}
.items .delete:hover{
    box-shadow: ghostwhite 5px 5px 5px;
    opacity: 0.7;
}

#checkout_btn{
    display: flex;
    padding: 20px;
}
button.checkout{
    margin: auto;
}

