*{
    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 5 rem;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
    background: rgb(17, 27, 218);
}
.navbar .navbar-brand{
    font-size: 25px;
    font-weight: 800;
}
#navbarSupportedContent a{
    color: azure;
    border-botton: 2px solid transparent;
}
#navbarSupportedContent a:hover{
    border-bottom: 2px solid red;
    nav-left: auto;
}
#navbarSupportedContent button{
    background: white;
    color: black !important;
    width: 5rem;
    border-radius: 15px;
}
section{
    width: 100;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 100px;
 
}

#home{
    background: linear-gradient(rgba(250, 250, 250, 0.4),rgba(250, 250, 250, 0.4)),url(fashion.webp);
    background-size: cover;
    background-position: center;
    flex-direction: column;
}
#home h1{
    font-size: 100px;
    letter-spacing: 3px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-shadow: white,
                 white,
                 white,
                 white,
                 white,
                 white,
                 white,
                 white,
                 white;
}
#home p{
    font-size: 18px;
}
#home .input-group{
    width: 40px;
    height: 45px;
}
.signin{
    background: rgb(13, 227, 149)!important; 
    color: white !important;
    box-shadow: 2px 4px 5px rgba(0,0,0.3);
}
.d-flex a{
    color: aliceblue;
    text-decoration: none;
}
#about{
    background: linear-gradient(to right,rgb(240, 210, 154),rgb(240, 210, 154) 100%);
}
#about h1{
    font-weight: 800;
    font-size: 50px;
}
#about img{
    height: 80%;
    padding-left: 40px;
}

#product{
    background: #e5e5e5;
}
#product h1{
    font-size: 50px;
    letter-spacing: 2px;
    font-weight: 700;
}
#product img{
    width: 200px;
    height: 200px;
    padding-top: 20px;
}
.card{
    width: 250px;
    height: 250px;
    background: #e5e5e5;
    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 15px 10px rgba(0,0,0.3),
                inset -4px -4px 10px white;
    transition: .2s;            
}
#contact img{
    height: 100%;
}
.box{
    width: 80% !important;
    margin-top: 10%;
}
form{
    display: flex;
    flex-direction: column;
}
#contact{
    background: yellow;
}
#contact input{
    margin: 10px 0px;
}
#contact textarea{
    margin: 10px 0px;
}
footer{
    width: 100%;
    height: 30px;
    background: rgba(0,0,0,.8);
    margin-top: -30px;
    text-align: center;
    color: white;
    padding: 3px;
}