* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;

}

#container {

    margin: 20px;

}

body {

    background-color: #FCD7AD;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

}



#logo {

    width: 500px;
    height: 500px;
    background-image: url(eatery_logo.png);
    background-repeat: no-repeat;
    margin: 15px;
    margin-top: 50px;
    float: left;


}

#pictures {

    border: 4px inset brown;
    margin-top: 10px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    gap: 12px;
    padding: 15px;
    background-color: #F6C28B;
    border-radius: 2%;

}

.picture_item {


    min-height: 260px;
    min-width: 350px;
    flex: 1 0 25%;

}


#pictures div {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

#pictures div:nth-child(1) {

    background-image: url(seating.jpg);

}

#pictures div:nth-child(2) {

    background-image: url(food.jpg);

}

#pictures div:nth-child(3) {

    background-image: url(pizza.jpg);

}

#pictures div:nth-child(4) {

    background-image: url(burger.jpg);

}

#pictures div:nth-child(5) {

    background-image: url(pasta.jpg);

}


#pictures div:nth-child(6) {

    background-image: url(sandwich.jpg);


}

#icons {

    border: 4px inset brown;
    margin-top: 25px;
    margin-left: 25px;
    display: flex;
    font-size: 20pt;
    height: 80px;
    padding: 15px 36px;
    background-color: #F6C28B;
    border-radius: 2%;
    


}

.icon_item {

    min-height: 80px;
    min-width: 80px;
    flex: 1 0 27%;

}

#icons div {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

h1 {


    text-align: center;
    margin-top: 10px;
}

.menu-table {

    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    font-size: 15pt;
    width: fit-content;
    background-color: #F6C28B;
}

.menu-table td,
        td {

            padding: 30px 50px;
            border-collapse: collapse;
            position: sticky;
            

        }



 th {
    
    border: 4px solid brown;
    text-align: left;
    height: 45px;
    width: fit-content;
    text-align: center;
    margin-top: 15px;
    padding-top: 6px;
    font-size: 18pt;
    font-style: italic;

}





@media screen and (max-width: 1000px) {


    #logo {

        width: 700px;
        height: 500px;
        margin-left: 100px;
        margin-top: 50px;
        display: block;


    }

    #icons {

        border: 4px inset brown;
        margin-top: 25px;
        margin-left: 25px;
        display: flex;
        font-size: 18pt;

        height: 80px;
        padding: 15px 36px;
        background-color: #F6C28B;
        border-radius: 2%;

    }

    .icon_item {

        min-height: 80px;
        min-width: 80px;
        flex: 1 0 18%;


    }

    #icons div {
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;

    }



    #pictures {

        border: 4px inset brown;
        margin-left: 80px;
        margin-top: 10px;
        display: inline-block;
        justify-content: center;
        gap: 12px;
        padding: 15px;
        background-color: #F6C28B;
        border-radius: 0%;

    }

    .picture_item {

        border: 2px inset brown;
        min-height: 400px;
        min-width: 500px;
        flex: 1 0 25%;

    }

    #box1 {

        width: 45%;
        height: 100%;
        border: 0px solid brown;
        padding: 10px;
    }

    #box2 {
        width: 45%;
        height: 100%;
        border: 0px solid brown;
        padding: 10px;
    }

    .grid-container {
        display: grid;
        grid-template-columns: 150px 150px 150px;
        grid-template-rows: 150px 150px 150px;
        background-color: #2196F3;
        padding: 10px;
    }

    .grid-item {
        background-color: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(0, 0, 0, 0.8);
        padding: 20px;
        font-size: 30px;
        text-align: center;
    }


}