@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;800&family=Roboto:ital,wght@0,300;0,900;1,100;1,900&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: black;
    
}
.navbar .navbar-brand{
    font-size: 25px;
    font-weight:800;
    color:#29f700;
}

#navbarSupportedContent a {
    color: white;
    border-bottom: 2px solid transparent;
}
#navbarSupportedContent a:hover {
    color: white;
    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{
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)),url('./assets/bg.jfif');
    background-size: cover;
    background-position:center;
    flex-direction:column;
}

#home h1{
    font-size:100px;
    color:white;
    letter-spacing: 3px;
    text-shadow:0px 1px 0px #CCC,
    0px 2px 0px #CCC,
    0px 3px 0px #CCC,
    0px 4px 0px #CCC,
    0px 5px 0px #CCC,
    0px 6px 0px #CCC,
    0px 7px 0px #CCC;

}

#home p{
    font-size: 18px;
    color:#fff;
}

#home .input-group{
    width:40%;
    height:45px;

}
.signin{
    background:#29f700 !important;
    color:white;
    font-weight:bolder;
}

#about{
    background: linear-gradient(to right, #ea1d6f, #eb466b 100%);
}

#about h1{
    font-weight:bold;
    font-size: 50px;
    
}
/*************************Products****************************/

#product{
    background: #e5e5e5;
}

#product h1{
    padding:50px;
    font-size: 60px;
    letter-spacing:2px;
    font-weight: 700;
}

#product img{
    height:200px;
    width:200px;
}

.card{
    height:300px;
    width:250px;
    background-color: #e5e5e5 !important;
    border: none !important; 
    box-shadow: 15px 20px 20px rgba(0,0,0,0.5),
                inset 4px 4px 10px white ;
    border-radius: 30px !important;
    overflow:hidden;
    justify-content:center;
    align-items: center;
    margin: 20px 60px;
    transition: 0.2s;



}

.card:hover{
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.5),
            inset -4px -4px 10px white;
    transition: 0.2s;
}

/****************Contact********************/
#contact img{
    height:100%
}

.box{
    /* background-color: red; */
    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-color: rgba(0, 0, 0, 0.8);
    text-align:center;
    margin-top:-30px;
    color:white;
    padding:3px;
    
}