*{
    margin:0;
    font-family:Arial;
    box-sizing:border-box;
}

/* Navbar */

.navbar{
    height:60px;
    background-color:#0f1111;
    color:white;

    display:flex;
    align-items:center;
    justify-content:space-evenly;
}

.nav-logo{
    height:50px;
    width:100px;
}

.logo{
    background-image:url("amazon_logo.png");
    background-size:cover;
    height:50px;
    width:100%;
}

.border{
    border:1.5px solid transparent;
}

.border:hover{
    border:1.5px solid white;
    cursor:pointer;
}

/* Address Box */

.add-first{
    color:#cccccc;
    font-size:0.85rem;
    margin-left:15px;
}

.add-second{
    font-size:1rem;
    margin-left:3px;
}

.add-icon{
    display:flex;
    align-items:center;
}

/* Search Bar */

.nav-search{
    display:flex;
    justify-content:space-evenly;

    background-color:white;
    width:620px;
    height:40px;

    border-radius:4px;
}

.nav-search:hover{
    box-shadow:0 0 0 2px orange;
}

.search-select{
    background-color:#f3f3f3;
    width:50px;

    text-align:center;

    border:none;
    outline:none;

    border-top-left-radius:4px;
    border-bottom-left-radius:4px;
}

.search-input{
    width:100%;
    font-size:1rem;

    border:none;
    outline:none;
}

.search-icon{
    width:45px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:1.2rem;

    background-color:#febd68;
    color:#0f1111;

    border-top-right-radius:4px;
    border-bottom-right-radius:4px;

    cursor:pointer;
}

/* Sign In Box */

span{
    font-size:0.7rem;
}

.nav-second{
    font-size:0.85rem;
    font-weight:700;
}

/* Cart */

.nav-cart{
    display:flex;
    align-items:center;

    font-size:0.85rem;
    font-weight:700;
}

.nav-cart i{
    font-size:30px;
    margin-right:5px;
}

/* Panel */

.panel{
    height:40px;
    background-color:#222f3d;
    color:white;

    display:flex;
    align-items:center;
    justify-content:space-evenly;
}

.panel-all{
    cursor:pointer;
}

.panel-ops{
    width:70%;
    font-size:0.85rem;
}

.panel-ops p{
    display:inline;
    margin-left:15px;
    cursor:pointer;
}

.panel-deals{
    font-size:0.9rem;
    font-weight:700;
}

/* Hero Section */

.hero-section{
    background-image:url("hero_image.jpg");
    background-size:cover;

    height:380px;

    display:flex;
    justify-content:center;
    align-items:flex-end;
}

.hero-msg{
    background-color:white;
    color:black;

    height:40px;
    width:80%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:0.85rem;

    margin-bottom:25px;
    padding:0 10px;
}

.hero-msg a{
    color:#007185;
}

.hero-msg a:hover{
    color:red;
}

/* Shop Section */

.shop-section{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-evenly;

    background-color:#e2e7e6;

    margin-top:-20px;
}

.box{
    height:400px;
    width:23%;

    background-color:white;

    padding:20px 0px 15px;
    margin-top:15px;

    transition:transform 0.2s ease;
}

.box:hover{
    transform:translateY(-4px);
}

.box-content{
    margin-left:1rem;
    margin-right:1rem;
}

.box-img{
    height:300px;

    background-size:cover;
    background-position:center;

    margin-top:1rem;
    margin-bottom:1rem;
}

.box-content p{
    color:#007185;
    cursor:pointer;
}

/* Footer */

footer{
    margin-top:15px;
}

.foot-panel1{
    background-color:#37475a;
    color:white;

    height:50px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:0.85rem;

    cursor:pointer;
}

.foot-panel1:hover{
    background-color:#485769;
}

.foot-panel2{
    background-color:#222f3d;
    color:white;

    height:300px;

    display:flex;
    justify-content:space-evenly;
}

ul{
    margin-top:30px;
}

ul p{
    font-weight:700;
}

ul a{
    display:block;

    font-size:0.85rem;

    margin-top:10px;

    color:#dddddd;

    cursor:pointer;
}

ul a:hover{
    text-decoration:underline;
}

.foot-panel3{
    background-color:#222f3d;
    color:white;

    border-top:0.5px solid white;

    height:70px;

    display:flex;
    justify-content:center;
    align-items:center;
}

.foot-panel3 .logo{
    width:100px;
    height:50px;
}

.foot-panel4{
    background-color:#0f1111;
    color:white;

    height:80px;

    font-size:0.75rem;
    text-align:center;
}

.pages{
    padding-top:25px;
}

.pages a{
    margin-left:15px;
    cursor:pointer;
}

.pages a:hover{
    text-decoration:underline;
}

.copyright{
    padding-top:5px;
}

/* Responsive Design */

@media(max-width:1000px){

    .box{
        width:48%;
    }

    .nav-search{
        width:400px;
    }
}

@media(max-width:600px){

    .box{
        width:95%;
    }

    .nav-search{
        width:250px;
    }

    .panel-ops{
        display:none;
    }
}