* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}



header {
    display: flex;
    margin-top: 10px;
    width: 100%;
    height: 50px;
    flex-direction: row;
    align-items: top;
    justify-content: space-evenly;
    gap: 10px;
}

.comment {
    color: rgb(189, 189, 189);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.timeElement {
    color: rgb(91, 91, 91);
    font-size: larger;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#mainDiv {
    display: grid;
    border-top: 2px solid rgb(168, 168, 168);;
    width: 100%;
    height: calc(100vh - 60px);
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}

#left {
    display: flex;
    flex-direction: column;
    /* background-color: gray; */
    border-right: 1px solid rgb(168, 168, 168);
}

#productsTopBar > h1 {
    font-size: 400%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgb(98, 98, 98);
}

#productsTopBar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#UpperPriceButton,
.button {
    height: 80%;
    width: 100px;
    box-shadow: none;
    border: 2px solid rgb(98, 98, 98);
    border-radius: 20px;
    background-color: white;
    color: rgb(98, 98, 98);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 100%;
}

#UpperPriceButton {
    margin-inline: 10px
}

#filterButtonDiv {
    display: flex;
    height: 100%;
    align-items: center;
    /* margin-right: 10px; */
    gap: 10px;
    border-right: 1px solid black;
    padding-right: 10px;
}

#right {
    /* background-color: black; */
    border-left: 1px solid rgb(168, 168, 168);
}

#shoppingCartTopBar > h1 {
    padding-left: 10px;
    font-size: 400%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgb(98, 98, 98);
}

#shoppingCartTopBar > h2 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgb(98, 98, 98);
}

#shoppingCartTopBar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-inline: 20px;
}

.categorieHeading {
    padding-left: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgb(43, 43, 43);
    font-size: 200%;  
    font-weight: bold; 
}

.categorie {
    display: flex;
    flex-direction: column;
    border-top: 2px solid rgb(98, 98, 98);
}



.product {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-inline: 20px;
    align-items: center;
    height: 100px;
    border: 2px solid rgb(159, 159, 159);
    border-radius: 20px;
    margin: 10px;
    /* background-color: gray;
    border: 3px solid red; */
}

.product > .nameText {
    font-size: 400%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgb(90, 90, 90);
}

.product > .priceText {
    font-size: 200%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: gray;
}

.shoppingCartItem {

}


#buttonDiv {
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
    justify-content: center;
}