*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
#navbar{
    position: sticky;
    top:0;
    left: 0;
    z-index: 100;
    padding: .5rem 5rem;
    box-shadow: 5px 5px 20px rgba(0,0,0,5);
    background: black;
}
.navbar  .navbar-brand{
    font-size: 25px;
    font-weight: 800;
    color: green !important;
}
#navbarSupportedContent a{
    color: white;
    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-image:linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.4)),url('species.bg');
    background-size: cover;
    background-position: center;
    flex-direction: column;
    }
#home h1{
    font-size: 100px;
    color: white;
    letter-spacing: 3px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    
}
#home p{
    font-size: 18px;
    color: #fff;
}
#home .input-group{
    width: 40%;
    height: 45px;
}
.signin{
    background-color: #29f700 !important;
    color: #fff;
    box-shadow: 2px 4px 5px rgba(0,0,0,.3));
}


/*****About*****/

#about{
    background: linear-gradient(to right,#dd6092,#eb466b 100%);
}
#about h1{
    font-weight: 100px;
    font-size:50px ;
    color: #fff;

}
#about p{
    color: #fff;
}

/****product***/
#product{
    background: #e5e5e5;

}
#product h1{
    font-size: 50px;
    letter-spacing: 2px;
    font-weight: 700;

}#product img{
    width: 200px;
    height: 200px;
}
.card{
    width: 250px;
    height: 300px;
    background: #e5e5e5 !important;
    border: none !important;
    box-shadow: 15px 20px 20px rgba(0,0,0,.3);
                inset: 4px 4px 10px #ffff ;
    border-radius: 20px !important;
    overflow: hidden;
    justify-content: center;
  align-items: center;
  margin: 20px;

}
.card:hover{
      box-shadow:inset 5px 5px 10px rgba(0,0,0,.3),
                 inset 4px 4px 10px #fff;
     transition: 2s;
}

/****contact****/

#contact img{
    height: 100%;

}
.box{
    width: 80% !important;
    margin-top: 10px;

}
form{
    display: flex;
    flex-direction: column;
}
#contact input{
    margin: 10px 0px;
}
#contact textarea{
    margin: 10px 0px;
}
footer{
    width:100% ;
    height: 30px;
    background: black;
    margin-top: 30px;
    text-align: center;
    color: #e5e5e5;
    padding: 3px;
}

