#navList{
    list-style: none;
}

*{
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
.container{
    height: 100vh;
    width: auto;
    
    overflow-x: none;
    background-image: linear-gradient(to top, #cd9cf2 0%, #f6f3ff 100%);
}

.navContainer{
    

background: linear-gradient(45deg, rgba(65, 89, 208, 1.000) 0.000%, rgba(200, 79, 192, 1.000) 50.000%, rgba(255, 205, 112, 1.000) 100.000%);
    width: 100vw;
    background-color: rgb(98, 11, 180);
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#navLogo{
    font-size: 2rem;
    color: aliceblue;

}

#navList{
    width: 100%;
    padding: 15px;
   /* margin-left: 15px;
    margin-right: 15px; */
    font-size:2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    
}
a{
    text-decoration: none;
    color: aliceblue;
}
nav{
    width: 100%;
    overflow-x: none;
    
}
#navItems{
    display: flex;
    gap: 20px;
    
}
.footerBox{
    background-image: linear-gradient( 177.6deg,  rgba(20,0,113,1) 15.3%, rgba(1,0,62,1) 91.3% );
    
    text-align: center;
    min-height: 50px;

}
 .footerBox p{
    color: aliceblue;
    font-size: 1rem;

 }
 .contentBox{
    width: 500px;
    height: 650px;
    margin: auto;
    /*border: 2px solid black;*/
    background-image: radial-gradient( circle farthest-corner at 6.3% 21.8%,  rgba(236,6,117,1) 0%, rgba(13,32,67,1) 90% );
    flex-direction: column;
    gap: 1000px;
    box-shadow: 3px 3px 300px burlywood;
    
 }


 .item{
    display: flex;
    justify-content: space-around;
    align-items: center;
 }

 .rightBox img{
    border-radius: 20px;
   transition: all 0.6s linear 0s;

 }

 .rightBox:hover{
    transform: scale(1.1);
    
 }

 .rightBox{
    position: relative;
    overflow: hidden;
    transition: all 0.3s linear 0s;
    
 }


 .leftBox{
    display: flex;
    gap: 20px;
    flex-direction: column;
 }
 
 .leftBox h2{
    font-size: 2rem;
 }

 .IngBox{
    font-size: 1rem;
 }

 .recipeBox{
    font-size: 1.1rem;
 }

 .rightBox .overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color:rgba(36,34,34,0.713);
  border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s linear 0s;
 }

 .rightBox .overlay span{
    color: aliceblue;
    font-size: 1.2rem;
 }
 .rightBox:hover .overlay{
    opacity: 1;
 }

 
