body{

    background: linear-gradient(90deg, rgb(65, 89, 208) 0%, rgb(81, 34, 236) 16.667%, rgb(133, 29, 229) 33.333%, rgb(200, 79, 192) 50%, rgb(255, 152, 144) 66.667%, rgb(255, 205, 112) 83.333%, rgb(255, 205, 112) 100%);;
}

#navlist{
    list-style: none;
     font-size: 1.8rem;
     display: flex;
     justify-content: space-around;
     margin-left:  10px;
     margin-right: 10px;
     align-items: center;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
}
nav{
    width: 100%;
}

.navcontainer{
    width:100vw;
    background: linear-gradient(90deg, rgb(164, 116, 81) 0%, rgb(156, 152, 129) 16.667%, rgb(115, 160, 157) 33.333%, rgb(59, 137, 154) 50%, rgb(9, 91, 121) 66.667%, rgb(0, 40, 71) 83.333%, rgb(0, 1, 22) 100%);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

}
#navlogo{
    font-size: 2.8rem;
    color: white;
    
}

a{
    text-decoration: none;
    color: azure;
}
#navitems{
    display: flex;
    gap: 40px
    
    
}
/* footer section  */
.footbox{
     background: linear-gradient(90deg, rgb(164, 116, 81) 0%, rgb(156, 152, 129) 16.667%, rgb(115, 160, 157) 33.333%, rgb(59, 137, 154) 50%, rgb(9, 91, 121) 66.667%, rgb(0, 40, 71) 83.333%, rgb(0, 1, 22) 100%);
     
     width: 100%;
     text-align: center;
     min-height: 20px;
}
.footbox p{
    color: azure;
    font-size: 1rem;

}

/* main items */
.contentbox{
    width: 50%;
    padding-left: 20px;
    margin: auto;
    /* border: 1px solid black; */
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding-right: 20px;
    padding: 3rem;
    box-shadow: 0px 0px 30px black;
}

.item{
    display:flex;
    justify-content: space-around;
    align-items: center;
}
.rightbox{
    position: relative;
    overflow: none;
    transition: all 0.3s linear 0s;
}

.rightbox img{
    
    height: 200px;
    width: 300px;
    border-radius: 20px;
    transition: all 0.6s linear 0s;
    
}
.rightbox:hover{
    transform: scale(1.1);
}
ul, ol {
  list-style-position: inside;
}

.leftbox{
    display: flex;
    flex-direction: column;
}
.leftbox h2{
    font-size: 2rem;
}

.ingbox{
    font-size: 1.3rem;
}

.recipebox{
    font-size: 1.1rem;
}

.rightbox .overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(25, 23, 23, 0.66);
     border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;

    
}
.rightbox:hover .overlay{
    opacity: 1;
    transition: all 0.3sec linear 0s;
}
.rightbox .overlay span{
    color:white;
    font-size: 1.2rem;
}

