@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --color1: #B9375D;
    --color2: #D25D5D;
    --color3: #F5CBCB;
    --color4: #F5F5F5;
}
header{
    height: 70px;
    width: 100%;
    box-shadow: 10px 5px 10px 5px rgba(247, 4, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    background-color: white;
}.logo{
    width: 90px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--color1);
    margin-left: 20px;
}.linksCnt ul{
    display: flex;
    list-style-type: none;
    justify-content: space-around;
    align-items: center;
    height: inherit;
}.linksCnt a{
    text-decoration: none;
    color: var(--color1);
    font-size: larger;
    font-weight: 800;
}
.logoCnt {
    height: inherit;
    width: 5%;
}
.linksCnt{
    height: inherit;
    width: 105%;
}
.menuCnt{
    height: inherit;
    width: 11%;
}
.logoCnt,.menuCnt{
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width:576px)
{
    .text{
        display: none;
    }
    .menu{
        display: block;
    }
    .logo{
        width: 100px;
        margin-left: -100px;
    }
}

.non-veg-sec
{
    width: 92%;
    height:fit-content;
    /* border:2px solid; */
    /* margin-top: 20vh; */
    margin: 20vh 5vh 0px 8vh;
}
.non-veg-sec h1{
    margin: 20px 0px 10px 0px ;
    font-size: 1.9rem;
}
.container1
{
    width: 100%;
    height: 5vh;
    /* border: 2px solid; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.cnt-box{
    width: 80px;
    height:80% ;
    border: 1px solid rgb(237, 25, 25);
    border-radius: 10px;
    margin-right: 10px;
    text-align: center;
     margin-top:20px ;
}

.menu-sec-box
{
    
    width: 92%;
    height: fit-content;
    /* border: 2px solid aqua; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: auto;
}
.menu-box
{
    width: 20%;
    height: 300px;
    /* border: 2px solid black; */
    margin: 30px 30px 30px 30px;
    border-radius: 15px 15px 15px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* transition: transform 0.2s ease; */
    background-color: rgb(232, 133, 133);

}
.menu-box img{
border-radius: 5px;
width: 100%;
  height: 70%;
  object-fit: cover;
  margin-bottom: 10px;
}
.menu-box p{
    color:rgb(20, 54, 102);
    font-size: 1.2rem;
    margin: 10px;
}
.menu-box a{
    text-decoration: none;
    color: #35060f; 
    margin-left: 10px;  
}
.menu-box:hover
{
    transform: scale(1.02);
}
