*{
padding:0;
margin:0;
}
body{
    width:100%;
    height: 100%;
    background-image: url(bg.jpg);
    backdrop-filter: blur(4px);
    background-size:cover;
}
.top{
display:flex;
flex-direction:row;
justify-content: space-between;
height: 80px;
align-items:center;
padding: 0px 40px;
}
.logo{
    font-size: 30px;
    color:rgb(255, 255, 255);
    
}

.heading{
    display: flex;
    justify-content: space-evenly;
    padding-top:65px;
    align-items:center;
}
.right{
    width: 440px;
    height: 440px;
    background-size:cover;
    border-radius: 400px;
    display: flex;
    justify-content: center;
    align-items:center;
}
.right::before{
    width: 430px;
    height: 430px;
    border:2px solid rgb(255, 255, 255);
    content: '';
    position: absolute;
    border-radius: 430px;
    padding:10px;
}
.left p:nth-child(1){
    color: rgb(250, 250, 250);
    font-size:30px;
    letter-spacing: 1px;
    font-style: italic;
}
.left h1{
font-size:90px;
color:rgb(255, 255, 255);
}
.left p:nth-child(3){
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-style:italic;
}
.left button{width: 150px;
height: 30px;
    font-size: 15px;
    border-radius:20px;
    border:2px solid papayawhip;
    background-color: rgb(37, 22, 22);
    color:papayawhip;
    margin: 20px 0px;}
.check:hover{
    background-color: transparent;
    color: white;
    transition: 0.5s;}
#food1{
    background-image: url('orange.jpg');
}
#food2{
    background-image: url('apple.jpg');
}
#food1,#food2{
    background-size: cover;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    margin: 0px 20px;
    cursor: pointer;
    justify-content: space-between;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
#food1:hover,#food2:hover{
    background-size: cover;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 3px solid black;
    margin: 0px 20px;
    cursor: pointer;
    justify-content: space-between;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1.2);
}
.menu{
    display: flex;
    margin: 0px 100px;
}.food {
    display: flex;
    flex-direction: row;
}.left p {
    color: white;
    font-size: 30px;
    letter-spacing: 1px;
    font-style: italic
}