*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    
}
body{
    background-image: linear-gradient( 174.2deg,  rgba(255,244,228,1) 7.1%, rgba(240,246,238,1) 67.4% );
    overflow-x: hidden;
    overflow-y: hidden;
}
.container{
     height: 100vh;
     width: 100vw;
     border: 1px solid black;
     overflow-x: hidden;
}
#navlist{
    padding: 20px ;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center ;
}
a{
    text-decoration: none;
    color: aliceblue;
        
}
.navbar{
    width: 100vw;
    background-image: radial-gradient( circle 762px at 11.2% 17.8%,  rgba(253,243,106,1) 0%, rgba(255,153,1,1) 89.2% );
}
.navlogo{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 2.4rem;
}
.navitems{
    display: flex;
    font-size: 2rem;
    gap: 15px;
    padding-right: 20px;
}
footer{
    width: 100%;
    background-image: radial-gradient( circle 762px at 11.2% 17.8%,  rgba(253,243,106,1) 0%, rgba(255,153,1,1) 89.2% );
    text-align: center;
    min-height: 30px;
    font-size: 1.5rem;
    overflow: hidden;
    color: aliceblue;
}
.contentbox{
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 50%;
    gap: 100px;
    padding: 40px;
    background-image: radial-gradient( circle 232px at 10% 20%,  rgba(251,238,115,0.74) 0%, rgba(241,195,87,0.74) 90% );
    box-shadow: 1px 1px 30px black;
    border-radius: 10px;
}

.item{
    display: flex;
    justify-content: space-around;
}
.rightbox img{
    height: auto;
    width: 100%;
    border-radius: 15px;
}
.leftbox{
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* padding-left: 50px; */
}
.rightbox:hover{
    transform:scale(1.1);
    transition: all 300ms;
}
.rightbox{
    width: 300px;
    position: relative;
    overflow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    box-shadow: 1px 1px 20px black;
}
.rightbox .overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background-color: rgba(154, 139, 139, 0.636);
    opacity: 0;
}
.rightbox:hover .overlay{
    opacity: 1;
}
.rightbox .overlay span{
    color: white;
}