@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,.5);
    background: black;
}
.navbar .navbar-brand{
    font-size: 25px;
    font-weight: 800;
    color: aqua!important;
}

.navbar .btnlogin-popup{
    width: 130px;
    height: 50px;
    background: transparent;
    border: 2px solid #fff;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1em;
    color: #fff;
    font-weight: 500px;
    margin-left: 40px;
    transition: .5s;
}

#navbarSupportedContent a{
    color: #fff;
    border-bottom: 2px solid transparent;
}
#navbarSupportedContent a:hover{
    border-bottom: 2px solid #29f700;
}
section{
    width: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


/***home***/

#home{
    background:url(image/dfg.jpg);
    background-size: cover;
    background-position: center;
    flex-direction: column;
}
#home h1{
    font-size: 100px;
    color: white;
    letter-spacing: 2px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-shadow: 0px 1px 0px  red,
                 0px 2px 0px  red,
                 0px 3px 0px  red,
                 0px 4px 0px  red,
                 0px 5px 0px  red,
                 0px 6px 0px  red,

}                
                 
#home p{
    font-size: 18px;
    color: red;

}
#home .input-group{
    width: 40%;
    height: 45px;
}


/***Gold Items***/


#Gold{

    background: #e5e5e5;
}
#Gold h1{
    font-size: 30px;
    letter-spacing: 2px;
    font-weight: 700;
}
#Gold 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 white;
    border-radius: 20px ; 
    overflow: hidden;
    justify-content: center;
    align-items: center;
    margin: 20px 60px;
    transition: .2s;

}
.card:hover{
    box-shadow: inset 5px 5px 10px rgba(65, 56, 56, 0.3),
                inset -4px -4px 10px white;
    transition: .2s;

}


/***Contact***/

#contact img{
    height: 100%%;
}
.box{
    width: 80% !important;
    background:pink;
    margin-top: 50px;
}
form{
    display: flex;
    flex-direction: column;
}
#contact input{
    margin: 10px  0px;
}
#contact textarea{
    margin: 10px  20px;
}



