
#container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    margin: 15px;
}


h1 {
    font-size: 3rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    margin-bottom: 100px;

}

#chicken {
    border: solid;
    background-color: aquamarine;
    width: 100%;

    
}

h2 {
    border: solid;
    width: 30%;
    position: relative;
    left: 69.5%;
    bottom: 18px;
    background-color: blue;
    margin-bottom: 0px;
    text-align: center;
    font-size: 1.2rem;
  
}

#text1 {
    margin-bottom: 0px;
    padding: 10px;
    display: block;
    margin-top: 0px;
    
}

#beef {
    border: solid;
    background-color: rgb(110, 112, 111);
    width: 100%;
    /* text-align: justify; */

}

h3 {
    border: solid;
    width: 30%;
    position: relative;
    left: 69.5%;
    bottom: 21px;
    background-color: rgb(189, 95, 7);
    margin-bottom: 0px;
    text-align: center;
}

#text2 {
    margin-bottom: 0px;
    padding: 10px;
    display: block;
    margin-top: 0px;

}

#sushi {
    border: solid;
    background-color: rgb(183, 183, 38);
    width: 100%; 
    /* margin-left: 20px;  */

}

h4 {
    border: solid;
    width:30%;
    position: relative;
    left: 69.5%;
    bottom: 23.5px;
    background-color: rgb(24, 141, 48);
    margin-bottom: 0px;
    text-align: center;

}

#text3 {
    margin-bottom: 0px;
    padding: 10px;
    display: block;
    margin-top: 0px;
}


@media (min-width: 768px) and (max-width: 991px) {
    #container {
        /* display: grid; */
        grid-template-columns: 1fr 1fr;
    }    
    #sushi {
        grid-column-start: 1;
        grid-column-end: 3;
    }
}

 @media (max-width: 767px) {
    #container {
        /* display: grid; */
        grid-template-columns: 1fr;
    }
    
}

