@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,300;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@500;600&family=Mulish:ital,wght@0,300;1,500&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.sushi-home{
    position: relative;
}
body{
    overflow: hidden;
    height: 100vh;
   
}
.bimage{
    background-image: url(https://res.cloudinary.com/beautifulone0/image/upload/v1663137447/sushi%20food%20images/restaurant_2_ahciw2.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100vw;
}

.btext{
    position: absolute;
    left: 120px;
    top: 110px;
    transform: translate(-50% -50%);
    margin: auto 100px;
}

h2{
    font-family: 'baloo bhai';
    font-style: normal;
    font-weight: 400;
    font-size: 60px;
    line-height: 75px;
    color: #F1D5BB;
    text-align: center;
}

p{
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 31px;
    text-align: center;
    margin-top: 20px;
    color: #FFFFFF;
    text-align: center;
}

span{
    font-weight: 900;
}

h3{
    position: absolute;
    width: 306px;
    height: 63px;
    left: 243px;
    top: 43px;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 63px;

    color: #000000;
}

.menu{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 30px 20px;
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    margin: 100px 100px;
    border-radius: 2px;
    position: absolute;
    align-content: center;
    left: 100px;
}
.item img{
   width: 100%;
   height: 200px;
   object-fit: contain;
   cursor: pointer;
   transition: 0.2s ease;
}

.item img:hover{
    transform: scale(1.04);
}

.item h4{
    padding: 5px;
    text-align: center;
}
.h3{
    position: absolute;
    width: 306px;
    height: 63px;
    left: 243px;
    top: 43px;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 600;
    font-size: 50px;
    line-height: 63px;
    color: #000000;
  }
