@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
#navbar{
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    padding: .5rem 5rem;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.5);
    background-color: black;
}
.navbar.navbar-brand{
    font-size: 25px;
    font-weight: 800;
    color: #29f700 !important;
}
#navbarSupportedContent a{
    color: #fff;
    border-bottom: 2px solid transparent;
}
#navbarSupportedContent a:hover{
    border-bottom: 2px solid #29f700;
}
#navbarSupportedContent button{
    background: #29f700;
    width: 5rem;
    border-radius: 15px;
}
section{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
/****Home*****/
#home{
    background: url(spices.webp);
    background-size: cover;
    background-position: center;
    flex-direction: column;
}
#home h1{
    font-size: 45px;
    color: #fff;
    letter-spacing: 2px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-shadow: 0px 1px 0px #ccc,
                 0px 2px 0px #ccc,
                 0px 3px 0px #ccc,
                 0px 4px 0px #ccc;
}
#home p{
    font-size: 18px;
    color: #fff;
}
#home .input-group{
    width: 30%;
    height: 20px;
}
.signin{
    background: #29f700 !important;
    color: white !important;
    box-shadow: 2px 4px 5px rgba(0,0,0,0.5);
}

/*****About*****/

#about{
    background : linear-gradient(#ea1d6f,#eb466b 100%)
}
#about h1{
    font-weight: 800;
    font-size: 50px;
    color: #fff;
}
#about p{
    color: white;
}

/*****Products******/

#products{
    background :lightgrey;
}
#products h1{
    font-size: 50px;
    letter-spacing: 2px;
    font-weight: 800;
}
#products img{
    width: 200px;
    height: 175px;
}
.card{
    width: 300px;
    height: 270px;
    background: lightgray !important;
    border :none !important;
    box-shadow: 15px 20px 20px rgba(0,0,0,0.3),
                inset 4px 4px 10px white;
    border-radius: 20px !important;      
    overflow: hidden;      
    justify-content: center;
    align-items: center;
}
/****Contact*****/
#contact img{
    height: 100%;

}
.box{
    width: 80% !important;
    margin-tip: 10px;
}
form{
    display: flex;
    flex-direction: column;

}
#contact input{
    margin: 10px 0px;
}
#contact button{
    margin: 10px 0px;
}    
footer{
    width: 100%;
    height: 50px;
    background: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}