
#newHeader{
    background-color: #E67E22;
    z-index: 4;
}
#nice{
    color:white;
    transition-duration: 0.25s;
}
#nice:hover{
    color: black;
    background-color: white;
}
#newLogo{
    color:black;
}
#getHam{
    background-color: black;
    color:black;
}


.main-div{
height: 120vh;
}
h1 {
    text-align: center;
    }
    
    .menu-top {
    background-color: #f1c40f;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    }
    
    input[type="text"] {
    padding: 0.5rem;
    border-radius: 4px;
    border: none;
    }
    
    main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 1rem;
    padding: 1rem;
    }
    
    .item {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    }
    
    .item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
    }
    
    .item h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    }
    
    .item p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: justify;
    }
    
    .item .price {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    }
    
    .item .buy-now {
    background-color: #f2c94c;
    border: none;
    color: #333;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    }
    
    .item .buy-now:hover {
    background-color: #f7d884;
    }
    
   
    @media only screen and (max-width:1000px)
    {
        main{
            grid-template-columns: repeat(2,1fr);
        }
    }
    @media only screen and (max-width:768px)
    {
        main{
            grid-template-columns: repeat(1,1fr);
        }
    }

    #footer-below{
        display: block;
        
    }

    .footer-menu ul {
        margin-left: 20vw;
        display: flex;
        flex-wrap: wrap;
    }
    .logo {
        font-size: 24px;
        color: white; 
    }
    
    .cart-logo {
        font-size: 24px;
        cursor: pointer;
    }
    