           /* HEADER */
*{
    margin: 0;
    padding: 0;
}
body{
    background-color: white;
}
.header{
    max-width:100%;
    position: sticky;
    top:0;
}
.container{
    padding: 10px;
    background-color: #262629;
    display: grid;
    grid-template-columns: 300px 500px 200px 150px ;
    align-items: center;
    justify-content: space-around;
    gap: 80px;
 }
 .logo{
    font-family: cursive ;
    font-size: 40px;
    color: white;
    font-weight: bolder;
 }

.navbar ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.navbar li{
    list-style: none;
}
.navbar a{
    text-decoration: none;
    color:chocolate;
    font-family:cursive;
    font-size:20px;
    font-weight:900;
}
.navbar a:hover{
    color: white;
}

.search-bar{
    width: 100%;
    max-width: 280px;
    border: 1px solid rgb(129, 122, 122);
    display: flex;
    align-items: center;
    padding:  6px 20px;
    border-radius: 60px;
    
}
.search-bar input{
    background:transparent;
    flex: 1;
    border: 0;
    outline: none;
    font-size: 15px;
    color: aliceblue;
}
::placeholder{
    color: rgb(134, 139, 137);
}
.search-bar button{
    border: 0;
    width: 30px;
    height: 25px;
    border-radius:50% ;
    cursor: pointer;
    background: transparent;
    color: white;

}

.header-actions .user,.bag,.wishlist{
    background:none;
    border: 0;
    color:white;
    padding: 7px;
}
.topbar{
    background-color: yellow;
    color: red;
    font-size: 10;
    font-weight: 500;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    position: sticky;
    top: 76px;
}
.topbar marquee{
    position: static;
}
body.scrolling-down .home  div{
    display: none;
}
.home{
    height:780px;
    color: white;
}
.content{
   
    width: 500px;
    height: 350px;
    text-align: center;
    position: static;
    animation-name: jump;
    animation-duration: 2s;
}

@keyframes jump{
    0%{
        
    }
    20%{
        top:90px;
    }
    40%{
        top:200px;
    }
    50%{
        top: 130px;
    }
    60%{
        top:200px;
    }
    70%{
        top:150px
    }
    80%{
        top:200px;
    }
    90%{
        top: 180px;
    }
    100%{
        top:200px;
    }
}

.home-title span{
    font-weight:bolder;
    font-size: 3rem;
    font-family:cursive;

}
.home-title{
    font-size: 5em;
    font-family:cursive; 
}
.home-text{
    font-size: large;
    padding:30px;
}

.home .btn{
    text-decoration: none;
    color: white;
    background-color: black;
    padding: 10px;
    border-radius:300px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size:20px;
    font-weight: 500;
}
.home .btn:hover{
    background-color: chocolate;
}

/* CATEGORY */

.category h1 {
    font-family: sans-serif;
    padding: 80px;
    text-align: center;
}
.category h1 span{
    color: chocolate;
}
.items{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    
}
.card{
    text-align: center;
}
.card img{
    width: 250px;
    transition: 0.2s ease;
}
.card img:hover{
    transform: scale(1.07);
}
.card-title a{
    text-decoration: none;
    font-size: 20px;
    font-family: sans-serif;
    color: black;
}
.card-title a:hover{
    color: chocolate;
}
.offers .list{
    display: grid;
    grid-template-columns: 400px 400px 400px;
    column-gap: 40px;
    justify-content: space-evenly;
    list-style: none;
    position: relative;
    top: 100px;
}
.offers .offer-card{
    width: 360px;
    height: 350px;
}