
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
#navigation{
    position: fixed;
    z-index: 10;
}
.container{
    height: 100vw;
    width: 100vw;
    overflow-x: none;
    background-color: #e2e5e8;
    background-image: linear-gradient(98deg, #e2e5e8 0%, #ffffff 100%);
}

nav{
    width: 100%;
    overflow-x: 0;
    position: fixed;
    z-index: 10;
}

#navlist{
    width: 100%;
    list-style: none;
    font-size: 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-left: 15px;
    margin-right: 15px; */
    padding: 15px
}
.navcontaier{
    width: 100vw;
    /* background-color: rgba(137, 43, 226, 0.397); */
    background-image: linear-gradient(to top, #30cfd0 0%, #330867 100%);
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 10;
}
#navlogo{
    font-size: 2.5rem;
    color: azure;
}
a{
    text-decoration: none;
    color: azure;
}
#navitems{
    display: flex;
    gap: 35px;
}



.footerBox{
    background-image: linear-gradient(to right, #0acffe 0%, #495aff 100%);
    min-height: 40px;
    text-align: center;
}
.footerBox p{
    color: azure;
    font-size: 2rem;
}




.contentBox{
    width: 50%;
    margin: auto;
    /* border: 1px solid black; */
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding: 3rem;
    box-shadow: 0px 0px 30px black;
}

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

.rightBox{
    position: relative;
    overflow: hidden;
    transition: all 0.3s linear 0s;
    box-shadow: 1px 1px 10px black;
    border-radius: 20px;
}

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

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

.leftBox{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.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(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:hover .overlay{
    opacity: 1;
}

.rightBox .overlay span{
    color: white;
    font-size: 1.2rem;
}