* {
    margin: 0;
    font-family: Arial;
    border: border-box;
}

body a {
    color: white;
}
.navbar {
    height: 60px;
    background-color: #0f1111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly; 
}
.navlogo {
    height: 50px;
    width: 100px;   
}

.logo {
    background-image: url("amazon_logo.png");
    background-size: cover;
    height: 50px;
    width: 100%;
}

.border {
    border: 2px solid transparent;
}

.border:hover {
    border: 2px solid white;
}

/**box2**/

.nav-address {
    /* color: white; */
}
.addfirst {
    color: #cccccc;
    font-size: 0.85rem;
    margin-left: 15px;
}

.addsecond {
    font-size: 1rem;
    margin-left: 3px;
}

.add-icon {
    display: flex;
    align-items: center;
}

/** box 3 **/
.nav-search {
    display: flex;
    background-color: pink;
    width: 620px;
    height: 40px;
    border-radius: 4px;
    justify-content: space-evenly;
}
.search-select {
    background-color: #e6e6e6;
    width: 50px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border: none;
    align-items: center;
}

.search-input {
    width: 100%;
    border: none;
    font-size: 1rem;
}

.search-icon {
    background-color:#febd68;
    width: 45px;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    color: #0f1111;
}

.nav-search:hover {
    border: 2px solid orange;
}

.nav-language {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}

.nav-signin {
    color: white;
}

.USA {
    width: 25px;
}

/**box 4**/
span{
    font-size: 0.75rem;
}

.nav-orders {
    color: white;
}

.nav-sec {
    font-size: 0.85rem;
    font-weight: 800;
    align-items: center;
}

.nav-cart i {
    font-size: 30px;
}

.nav-cart {
    font-size: 0.85rem;
    font-weight: 800;
    color: white;
}

/** panel **/

.panel {
    height: 35px;
    background-color: #222f3d;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: white;
}
.panel-ops p {
    display: inline;
    margin: 15px;
}

.panel-ops {
    width: 70%;
    font-size: 0.85rem;
}

.panel-deals {
    font-size: 0.9rem;
    font-weight: 700;
}

/** Hero-section **/
.hero-section {
    background-image: url(hero_image.jpg);
    background-size: cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-msg{
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    align-content: center;
    height: 40px;
    font-size: 0.85rem;
    width: 70%;
    font-weight: 575;
    margin-bottom: 25px;
}

.hero-msg a {
    color: #007185;
    font-size: 0.8rem;
}

/** Shop Section**/
.shop-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: #e2e7e6;
}

.box {
    height: 400px;
    width: 23%;
    /* border: 2px solid black; */
    background-color: white;
    padding: 20px 0px 15px;
    margin-top: 15px;
 
}
 
.box-img {
    height: 300px;
    background-size: cover;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.box-content {
    margin-left: 1rem;
    margin-right: 1rem;
}

.shop-section a {
    color: #007185;
}
/** footer **/

footer {
    margin-top: 15px;
    background-color: #222f3d;
    color : white;
}

.foot-panel1 {
    height: 50px;
    background-color: #37475a;
    color: white; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.foot-panel2 {
    height: 300px;
    display: flex;
    justify-content: space-evenly;
}

ul {
    margin-top: 20px;
}

ul a {
    display: block;
    font-size: 0.85rem;
    margin-top: 10px;
    color: #dddddd;
}

.foot-panel2 p {
    font-weight: 600;
}

.foot-panel3 {
    height: 70px;
    border-top: 0.5px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    background-image: url("amazon_logo.png");
    background-size: cover;
    height: 50px;
    width: 100px;
}

.foot-panel4 {
    text-align: center;
    height: 80px;
    font-size: 0.7rem;
}

.pages a {
    color: white;
}

.pages {
    padding-top: 25px;
}

.privacy {
    padding-top: 5px;
}

a {
    text-decoration: none;  /* for removing underline on link*/
}

.foot-panel2 a:hover{
    text-decoration: underline;  /* for underline hover effect */
}

.pages a:hover{
    text-decoration: underline;  /* for underline hover effect */
}    

.foot-panel1:hover{
    text-decoration: underline;  /* for underline hover effect */  
}

.shop-section a:hover{
    text-decoration: underline;  /* for underline hover effect */  
}

.hero-msg a:hover{
    text-decoration: underline;  /* for underline hover effect */  
}













