html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,main {
    display: block
}

body {
    line-height: 1
}

ol,ul {
    list-style: none
}

blockquote,q {
    quotes: none
}

blockquote:before,blockquote:after,q:before,q:after {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}



    .product-grid {
        display: grid;
        gap: 100px;
        padding: 40px;
        grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
    }
    
    .product {
        border: 1px solid #08dc3d;
        overflow: hidden;
        background-color: #fff;
        box-shadow: 10px 10px 4px rgba(77, 90, 135, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        color: #2c2a78;
        padding: 10px;
        border-radius: 8px;
    }
    
    .product-image {
        width: 15%;
        height: auto;
        display: block;
        object-fit: cover;
    }
    
    h2 {
        font-size: 1.2em;
        margin: 10px 0;
    }
    
    ul {
        list-style-type: none;
        padding: 0;
        margin: 10px 0;
    }
    
    ul li {
        margin: 5px 0;
    }
    
    .buy-now-btn {
        background-color: #60dcf2; /* Green */
        border: none;
        color: rgb(4, 0, 0);
        padding: 3px 6px;
        text-align: center;
        text-decoration: none;
        display: block;
        font-size: 1em;
        margin-top: 10px;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
        font-size: 15px;
    }
    
    .buy-now-btn:hover {
        background-color: #1f9ab0;
    }
    
    @media (min-width: 1200px) {
        .product-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (max-width: 1199px) and (min-width: 768px) {
        .product-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }
    
    @media (max-width: 767px) {
        .product-grid {
            grid-template-columns: repeat(1, 1fr);
        }
    }

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f1f1f1;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #ccc;
}

.tiny-images {
    margin-bottom: 5px; /* Add some space between the images and the copyright message */
}

.tiny-images img {
    width: 20px;
    height: auto;
    margin: 0 5px;
}

.copyright {
    font-size: 14px;
    color: #333;
}

    .menu-icon {
        width: 50px;
        height: 50px;
        vertical-align: middle;
        display: block;
        margin: 0 auto;
    }
    