.about1 {
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
    padding-bottom: 150px;
}

.aboutimg {
    flex: 0.5;
    text-align: right;
}

.aboutimg img {
    margin-top: -70px;
    border-radius:30px;
    height:500px
}

.aboutpara {
    flex: 0.5;
    text-align:center;
    
}

.aboutpara h1 {
    color:#990000;
    font-size: 3.5rem;
    margin-top: -20px;
    margin-bottom: 20px;
    font-family: sans-serif;
}

.aboutpara p {
    line-height: 22px;
    color: rgb(14, 14, 14);
}

.about2 h1 {
    text-align: center;
    font-size: 3rem;
    padding-bottom: 20px;
}

.about2 .food-items {
    margin: 0;
    background-color: transparent;
    
}

.about2 .food-items .item {
    background-color: lightslategrey;
    border-radius: 15px;
    box-shadow: 0 0 10px #a1aabc;
    margin-bottom: 40px;
    justify-content:center;
    display:flex;
    align-items:center;
    text-align:center;
    width:500px;
    height:400px;
}

.about2 img{
    width:200px;
    height:200px;
}

.about2 .food-items .item div {
    height: 200px;
}

.about2 .food-items h3 {
    color:#990000;
}

.about3 {
    padding: 100px 0;
    padding-bottom: 150px;
    text-align: center;
    border-radius:30px;
    background-color:lightslategray;
    padding-top:20px;
    padding-right:10px;
    padding-left:10px;
    padding-bottom:20px;
}

.about3 h1 {
    font-size: 2.5rem;
    padding-bottom: 40px;
    color:#990000;
}

.about3 p {
    text-align: justify;
}

@media only screen and (max-width: 768px) {
    .about1 {
        flex-direction: column-reverse;
    }
    .aboutimg {
        flex: 1;
        text-align: center;
    }
    .aboutpara {
        margin-top: 70px;
    }
}

@media only screen and (max-width: 550px) {
    .aboutimg img {
        width: 80vw;
    }
    .aboutpara h1 {
        font-size: 2.5rem;
    }
    .about1 {
        padding-top: 100px;
        padding-bottom: 90px;
    }
    .aboutpara p {
        text-align: justify;
        line-height: 18px;
        font-size: 14px;
    }
    .about2 h1 {
        font-size: 2.3rem;
        padding-bottom: 40px;
    }
    .about3{
        display:none
    }
}