@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,200;0,300;0,400;0,500;0,900;1,200;1,300;1,400;1,500;1,900&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap'); 
*.{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Fira Sans', sans-serif;
    font-family: 'Montserrat', sans-serif;
}
.topbar{
    background-color: #E1C16E;
    text-align: right;
    padding-right: 10px;
    font-weight: 700;
    padding: 2px;
   
}

.navbar{
    z-index: 100;
    position: sticky;
    top: 0;
    background-color: white;
    border-bottom:1px solid #cfcccf;
    border-top: 2px solid  #E1C16E;;
}
.navbar-brand{
    font-size: 2rem;
    color: #A52A2A;
    font-weight: bold;
} 


.navbar-brand:hover{
    color: #CD7F32;
}

.nav-link{
    margin-right: 10px;
    margin-left: 10px;
    color: #A52A2A ;
    font-weight: bold;
    text-transform: uppercase;

}
.nav-link:hover{
    color: #800020;
}
.search{
    padding: 5px;
    height: 40px;
    width: 80%;
    border-radius: 60px;
    outline: none;
    margin-right: -35px;
    border: 2px solid #A52A2A;
}
.btn0{
    height: 40px;
    width: 80%;
    border-radius: 60px;
    outline: none;
    border: none;
    background-color: #A52A2A;
    color: white;
    font-weight: 700;
}

.main{
    background: url(../images/bg1.jpg) no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    height: 80vh;
    width: 100%;

}

.main h1{
    font-size: 4rem;
    font-weight: 700;
    color:#800020;
    text-shadow: 2px 2px  #E1C16E;
    font-size: 2.5rem;
    margin-top: 10%;
}

.btn1{
    height: 45px;
   
    border: none;
    outline: none;
    background-color: #A52A2A;
    color: white;
    font-weight: 700;
    border-radius: 65px;
    padding-left: 10px;
    padding-right: 10px; 
}

.btn1:hover{
    background-color: #CD7F32;
    color:black;
}

.subheading{
    color: #CD7F32;
    font-size: 1rem;
    font-weight: 700;
    text-transform: capitalize;
}

.heading{
    color: #A52A2A;
    font-size: 2rem;
    font-weight: 700;
    text-transform: capitalize;
}
.card{
    padding: 5px;
}
.card:hover{
    -webkit-box-shadow: 1px 3px 8px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 3px 8px 0px rgba(0,0,0,0.75);
    box-shadow: 1px 3px 8px 0px rgba(0,0,0,0.75);
    transition: 0.2s ;
    cursor: pointer;

}

.footer{
    background-color: #197535;
    color: white;
    border-top: 6px solid #df92f7;
}
.footer h5{
  font-size: 1.5rem;
  font-weight: 700;
    
}

.footer-links{
    list-style-type: none;
   
}

.footer-links a{
    text-decoration: none;
    color: white;
    font-weight: 700;
    line-height: 2;
}

.footer-links a:hover{
    color: #E1C16E;
}

.footer-btm{
    background-color: #CD7F32;
    color: #800020;
    text-align: center;
    padding: 5px;
}

.footer-btm h6{
    font-weight: 700;
    color: #800020;
}

.footer-btm h6 a{
    font-weight: 700;
    color: white;
    text-decoration: none;
    
}
.price{
    font-weight: 700;
    font-size: 1.5rem;
    color: #CD7F32;
}
.gram{
    display: inline-block;
    background-color: #CD7F32;
    font-weight: 700;
    padding: 5px;
    color: white;
    border-radius: 10px;
}
.description{
    text-indent: 10px;
    line-height: 2;
}
.cartbtn{
    border: 2px solid #197535;
    color: green;
    background-color: white;
    font-weight: 700;
    border-radius: 30px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 5px;
    height: 40px;
    width: 100%;
}
.buybtn{
 
    color:white;
    background-color:#A52A2A;
    font-weight: 700;
    border-radius: 30px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 5px;
    height: 40px;
    width: 100%;

}
.buybtn:hover{
    color:#800020;
    background-color:#CD7F32;
}

@media screen and (max-width:600px){
    .navbar{
        position: relative;
    }
    .navbar-brand{
        font-size: 1.5rem;
        color: #A52A2A;
        font-weight: bold;
    }
    .main h1{
        color: rgb(231, 226, 226);
        font-size: 3rem;
        text-shadow:1px 1px black;
        
    }


    .subheading{
        color: #CD7F32;
        font-size: 1rem;
    }
    
    .heading{
        color: #A52A2A;
        font-size: 1.5rem;
    }
    .footer{
        text-align: center;
    }
    .footer-links{
        margin-left: -30px;
    }


   
    
}