*{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    width: 100%;
    height: 100%;
}
/* all css boilerplate */
/* all Styles below */

#main{
    display: flex;
    width: 100%;
    height: 100%;
    /* background-color: rgb(21, 0, 255); */
}
#lnav{
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 20px 30px;
}
#lnavr{
    display: flex;
    align-items: center;
}
#lnavr a{
    margin-right: 20px;
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 500;
}
#lnavr i{
    color: royalblue;
}
#left #textcenter{
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%,-50%);
}
#textcenter h1{
     font-size: 90px;
     font-weight: 900;
}
#textcenter p{
    opacity: 0.6;
    font-size: 14px;
    margin-top: 18px;
    margin-bottom: 20px;
    line-height: 20px;
}
#textcenter a{
    text-decoration: none;
    color: black;
    border-bottom: 1px solid black;
    padding-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.6;
}
#left{
    position: relative;
    width: 40%;
    height: 100%;
    /* background-color: aqua; */
}
#right{
    width: 60%;
    height:100%;
    /* background-color: aliceblue; */
}
#rtop{
    display: flex;
    width: 100%;
    height: 50%;
    /* background-color: red; */
}
#rbottom{
    background-image: url(https://images.unsplash.com/photo-1565557623262-b51c2513a641?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1071&q=80);
    background-position:center;
    background-size: cover;    
    width: 100%;
    height: 50%;
    /* background-color: blueviolet; */
}
#rtopleft{
    background-image: url(https://masalaandchai.com/wp-content/uploads/2022/03/Butter-Chicken.jpg);
    background-position:center;
    background-size: cover;
    width: 55%;
    height: 100%;
    /* background-color: bisque; */
}
#rtopright{
    background-image: url(https://www.goindigo.in/content/dam/indigov2/6e-website/destinations/get-inspired/food-tripping/Butter-Chicken.jpg);
    background-position: center;
    background-size: cover;    
    width: 45%;
    height: 100%;
    /* background-color: rgb(32, 193, 30); */
}
@media (max-width: 500px){
    #main{
        flex-direction: column;
    }
    #main #left{
        width: 100%;
    }
    #main #right{
        width: 100%;
    }
}