@charset "utf-8";

/*

   Styles for the shopping bag
   Author: Kyle Snyder
   Date:   12/14/24

   Filename: bag.css

*/

section {
    margin: 0px auto;
    border: 0px solid red;
    text-align: center;
}



table {
    width: 80%;
    margin: 50px auto;
    border: 5px solid black;
}

table img {
    width: 200px;
    margin: 20px;
}

table caption {
    font-size: 4em;
    font-weight: bold;
}

thead {
    font-size: 2em;
}

table h4 {
    font-size: 2em;
    font-family: "Play Pretend";
}

table h5 {
    font-size: 1.5em;
}

table h6, table p {
    font-size: 1.3em;
    margin: 0 0 20px;
}

tr {
    height: 50px;
    line-height: normal;
}

td > h6,
td > p {
    display: inline-block;
    line-height: 0px;
}

td > a {
    color: #aa0000;
    font-family: "Blocker";
}

td > a:hover {
    color: #880000;
}

tfoot td {
    font-size: 3em;
    font-weight: bold;
}

col#itemCol {
    width: 30%;
}

col#detailCol {
    width: 50%;
}

col#removeCol {
    width: 20%;
    align-items: center;
    justify-items: center;
    border: 1px solid blue;
    text-align: center;
}

section ul {
    text-align: left;
    margin-left: 10%;
    margin-top: -45px;
}

section > a {
    margin: auto auto auto auto;
    width: 20%;
    min-width: 200px;
    height: 50px;
    font-family: Grenze;
    font-weight: bold;
    font-size: 2em;
    color: rgb(128, 128, 128);
    background-color: black;
    box-shadow: 0px 0px 20px black;
    text-decoration: none;
    padding: 10px;
}

section > a:hover {
    background-color: rgb(128, 128, 128);
    color: black;
}

section > a:active {
    background-color: black;
    color: yellow;
}

@media only screen and (max-width:1300px) {
    section {
        display: block;
    }
}

@media only screen and (max-width:769px) {
    

   
}

@media only screen and (max-width:479px) {
    
    nav.navlist ul li{
        font-size: 1.5em;
    }
}