  @import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;500&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.4);
    background-color: black;
}
.navbar .navbar-brand{

    font-size: 25px;
    font-weight: 800;
    color: rgb(6, 171, 28)!important;
}
#navbarSupportedContent a{

    color-scheme: #fff;
    border-bottom: 2px solid transparent;

}
#navbarSupportedContent a:hover{

    border-bottom: rgb(6, 171, 28);
}

#navbarSupportedContent button{
    background: #29f730;
    width: 5rem;
    border-radius: 15px;


}

section{
    width: 100%;
    min-height: 100vh;
    font-display: flex ;
    justify-content: center;
    align-items: center;
    
}

/*** Home***/

#home{
    background: linear-gradient(rgba(0,0,0,.4),rgba(0,0,0, .5)), url(bg2.jfif);
    background-size: cover;
    background-position: center;
    flex-direction: column ;

    
}

#home h1{
    font-size: 100px;
    color: white;
    text-align: center;
    letter-spacing: 3px;
    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,
                0px 5px 0px #ccc,
                0px 6px 0px #ccc;

}

#home p {
    font-size: 38px;
    color: white!important;
    columns: #fff;
    text-align: center;


}

#home .input-group{
    background-position-x: center;
    width: 40%;
    height: 45px;

}
 
.signin{
    background: green !important; 
    color: white;
    box-shadow: 2px 4px 5px rgba(0,0,0,.3);

}

/* About */

#about{
    background: linear-gradient(#db86eb,#b33d8e);
    color: white;
}
 .h1{
    color: #fff;
}

 .p{
    color: white;
}

/* Product */

#product{
    background: #e5e5e5;

}

 .h1{
    font-size: 50px;
    letter-spacing: 2px;
    font-weight: 700px;

}
 .img{
    width: 200px;
    height: 200px;
}
.card{
    width: 270px; 
    height: 330px;
    background: #e5e5e5!important;
    border: none!important;
    box-shadow: 15px 20px 20px rgba(0,0,0,.3 ),
                inset 4px 4px 10px white;
    border-radius: 20px!important;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    margin: 20px 60px;
    transition: .2s;

}

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


/* Contact_Delivery */

#contact img{
    height: 100%;

}
.box{
    width: 80%!important;
    background: red;
    margin-top: 10px;
}
form{
    display: flex;
    flex-direction: column;

}

#contact input{
    margin: 10px 0px;
}
#contact textarea{
    margin: 10px 0px;
}

footer{
    width: 100px;
    height: 30px;
    background: rgba(0, 0, 0, .4);
    margin-top: -30px;
    text-align: center;
    color: white;
    padding: 3px;
}