body {
    font-family: sans-serif;
    background-color: #9AECEF;
}
* {
    margin: 0;
    box-sizing: border-box;
}
#wrapper {
    display: grid;
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
    grid-template-rows: auto;
}
header {
    display: flex;
    justify-content: space-between;
    grid-column: 1/-1;
    grid-row: 1/2;
    background: rgba(65, 18, 26, 0.33);
}
nav {
    width: 100%;
    height: 50px;
    grid-row: 1/2;
    grid-column: 1/-1;
}
#cart {
    width: 100px;
}
#cart img{
    width: 100%;
}
#featured_image {
    grid-row: 2/3;
    grid-column: 2/8;
}
#featured_image img {
    width: 100%;
    height: 468px;
}
nav ul {
    padding: 0 50px 0 50px;
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: space-around;
    grid-column: 1/-1;
}
nav ul li {
    color: #9AECEF;
    line-height: 100px;
}
main{
    grid-row: 3/4;
    grid-column: 2/8;
    display: flex;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
#products {
    display: grid;
    grid-template-columns: 206px 206px;
    grid-template-rows: 206px 206px;
    grid-gap: 30px;
}
footer {
    grid-row: 4/5;
    grid-column: 1/-1;
    font-family: sans-serif;
    background-color: blanchedalmond;
}
footer li{
    list-style: none;
    text-align: center;
}
footer ul{
    padding: 10px 0px 10px 0px;
}
@media screen and (max-width: 992px){
    #wrapper{
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 768px)) minmax(0px, 1fr);
    }
}
@media screen and (max-width: 768px){ 
    #products{
        display: flex;
        flex-direction: column;
    }
}