*{
    margin: 0;
    font-family: Arial;
    border: border-box;
}

.navbar{
    height: 60px;
    background-color:rgb(2, 2, 2);
    color: rgb(255, 255, 255);
    display:flex;
    align-items: center;
    justify-content: space-evenly;
}
.nav-logo{
    height: 50px;
    width: 150px;
    margin: 5px;
    align-items: center;
}
.logo{
    background-image: url("amazon_PNG11.png");
    background-size: cover;
    height: 50px;
    width: 100%;
    
}
.border{
    border: 2px solid transparent;

}
.border:hover{
    border: 2px solid white;
}

/**styling for address div**/

.add-first{
    color: #cccccc;
    font-size: 0.85rem;
    margin-left: 15px;
}
.add-sec{
    font-size: 1rem;
    color:white;
    margin-left: 5px;
}
.add-icon{
    display: flex;
    align-items: center;
}
.nav-add{
    padding-left: 5px;
}

/**styling for search div**/

.nav-search{
    display: flex;
    justify-content: space-evenly;
    background-color: pink;
    width: 600px;
    height: 40px;
    border-radius: 5px;  
}
.search-select{
    background-color: #f3f3f3;
    width: 50px;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border:none;
}
.search-input{
    width: 100%;
    font-size: 1rem;
    border:none;
}
.search-icon{
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    background-color:orange;
    border-radius: 5px;
}
.nav-search:hover{
    border: 2px solid orange;
}

/** styling for header signin box**/

span{
    font-size: 0.7rem;
}
.nav-sec{
    font-size: 0.85rem;
    font-weight: 700;
}

/**styling for header cart**/

.nav-cart i{
    font-size: 32px;
}
.nav-cart{
    font-size: 0.85rem;
    font-weight: 700;
}

/**styling for panel div**/

.panel{
    height: 40px;
    background-color: #222f3d;
    display: flex;
    color: white;
    align-items: center;
    justify-content: space-evenly;
}
.panel-option p{
    display: inline;
    margin-left: 15px;
}
.panel-option{
    width: 70%;
    font-size: 0.85rem;
    
}
.panel-deals{
    font-size: 0.9rem;
    font-weight: 700;
}

/**styling for hero section**/

.hero-section{
    background-image: url("heroimage.jpg");
    background-size: cover;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-msg{
    background-color: white;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    width: 80%;
    margin-bottom: 25px;
}
.hero-msg a{
    color: rgb(20, 156, 209);
}

 /**styling for shop section**/

 .shop-section{
    display: flex;
    justify-content: space-evenly;
    background-color: #e2e7e6;
 }
 .box{
    background-color: rgb(187, 176, 198);
    height: 400px;
    /**border: 2px solid black;**/
    width: 23%;
    margin-top: 15px;
    margin-bottom: 25px;

 }
 
.box-img{
    background-image: url("gamingproducts.jpg");
    height: 350px;
    margin-left: 10px;
    margin-right: 10px;
}
.box2-img{
    background-image: url("laptops.jpg");
    height: 350px;
    margin-left: 10px;
    margin-right: 10px;
}

.box3-img{
    background-image: url("shoes1.jpg");
    height: 350px;
    margin-left: 10px;
    margin-right: 10px;
}
.box4-img{
    background-image: url("TOYS.jpg");
    height: 350px;
    margin-left: 10px;
    margin-right: 10px;
}





