*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-image: url(foodfusion2.jpg);
    background-size:cover ;
    background-position:0% ;
    background-repeat: no-repeat;
    background-attachment:fixed;
    font-family: "Baloo Bhaina 2";
    color:whitesmoke;
}
.name{
    color:gainsboro;
    margin-left: 30px;
    font-family: "Baloo Bhaina 2";
    font-size: 50px;
}
.navbar{
    display:flex;
    justify-content: space-between;
    padding: 20px 60px;
    background: transparent;
    box-shadow: 0 2px 10px;
    color: rgb(170, 233, 45);
}
.nav-menu{
    list-style: none;
    display: flex;
    gap: 25px;
}
.nav-menu li a{
    text-decoration: none;
    color: white;
    font-weight: bold;
    position: relative;
    padding: 5px;
    transition: color 0.3s;
}
.nav-menu li a::before{
    content: '';
    position: absolute;
    bottom: 0;
    left:0;
    height: 2px;
    width: 0%;
    background: red;
    transition: 0.3s ease;
}
.nav-menu li a:hover::before,
.nav-menu li a:active::before
{
    width: 100%;
}
.nav-menu li a:hover{
    color: orangered;
}
.intro{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 60px;
    flex-wrap: wrap;
}
.intro1{
    color: wheat;
    padding-top: 60px;
    padding-bottom: 60px;
    font-family: "Caveat", cursive;
}
 .text-content{
    max-width: 600px;
}
.text-content{
    font-size: 42px;
    margin-bottom: 10px;
} 
.red{
    color:red;
    font-family: "Poppins", sans-serif;
}
.buttons{
    display: flex;
    gap:20px;
   margin-bottom: 20px;
}
.btn{
    padding: 12px 28px;
    border: 2px solid rgb(239, 17, 91);
    background: transparent;
    color: rgb(248, 101, 150);
    border-radius: 30px;
    font-weight: bold;
    column-rule-style: pointer;
    transition: 0.3sec;
}
.btn:hover{
    background:palevioletred;
    color: black;
    box-shadow: 0 0 12px rgb(216, 87, 130);
}

.copyright{
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: rgb(58, 53, 53);
    font-weight: 400;
    margin-top: 20px;
}


