body{
    margin: 0;
    padding: 0;
    background: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
nav{
    background: teal;
    display: flex;
    justify-content: space-between;
    padding: 5px 15px;
    height: 50px;
    align-items: center;
    border-bottom: 3px solid #fff;
    width: 93%;
}
nav h3{
    font-size: 23px;
    color: #fff;
    letter-spacing: 0.5px;
    margin-left: 10px;
}
nav h4{
    color: #fff;
    text-align: center;
}
.intro{
    width: 65%;
    height: max-content;
    background: url(https://thumbs.gfycat.com/ScientificZigzagArmadillo-size_restricted.gif);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.intro img{
    width: 25%;
    height: auto;
    border-radius: 50%;
    opacity: 0.5;
}.intro p{
    color: teal;
    background: #fff;
    opacity: 0.7;
    padding: 8px;
    border-radius: 5px;
    text-align: center;
}
.foods{
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background: crimson;
    flex-direction: column;
}
.foods h2{
    width: max-content;
    color: #fff;
    letter-spacing: 3px;
    padding-left: 13px;
}
.snack{
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(113, 20, 220);
    flex-direction: column;
}
.snack h2{
    width: max-content;
    color: #fff;
    letter-spacing: 3px;
    padding-left: 13px;
}
.drink{
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(20, 180, 220);
    flex-direction: column;
}
.drink h2{
    width: max-content;
    color: #fff;
    letter-spacing: 3px;
    padding-left: 13px;
}
ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}ul li{
    width: 230px;
    height: auto;
    background: #fff;
    box-shadow: 5px 5px 12px rgb(61, 61, 61);
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5px;
}ul li img{
    width: 100%;
    height: auto;
}ul li h4{
    margin: 5px;
    color: teal;
    text-align: center;
}ul li p{
    width: 100%;
    color: rgba(68, 68, 68, 0.933);
    margin: 0;
    padding-left: 15px;
    padding-bottom: 15px;
    animation: text_ani infinite 1.5s;
}
@keyframes text_ani{
    50%{
        opacity: 0.6;
    }
}

@media(max-width:750px){
    .intro img{
        width: 32%;
    }.foods h2{
        width: 100%;
    }
    nav{
        width: 95%;
    }
}