*
{
    margin: 0;
    box-sizing: border-box;
}

.back i
{
    position: fixed;
    left: 8px;
    top: 5px;
    font-size: large;
}
body
{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #333;
    color: #fff;
}
header
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 320px;
    background-image: url(./images/shop1.jpg);
    background-position: center;
    background-size: cover;
}
.top-header
{
    text-align: center;
}
.top-header h1
{
    font-weight: 600;
    font-size: 30px;
}
section
{
    margin: 35px 0;
}
.product-flex
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.product-flex .product-card
{
    width: 230px;
    height: auto;
    background-color: #005e42;
    padding: 15px;
    text-align: center;
    border-radius: 20px;
    transition: 0.5s;
}
.product-flex .product-card:hover
{
    background-color: rgb(0, 0, 139);
    transform: scale(1.1);
}
.product-flex .product-card img
{
    width: 200px;
    aspect-ratio: 1/1;
    object-fit: contain;
}
.product-flex .product-card button
{
    margin-top: 15px;
    background: none;
    border: none;
}
.product-flex .product-card a
{
    background-color: #ffa600;
    color: #fff;
    border: #fff 2px solid;
    border-radius: 10px;
    padding: 4px 8px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.5s;
}
.product-flex .product-card a:hover
{
        background-color: transparent;
}
footer
{
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    background-color: #005e42;
    height: auto;
}
.foo1
{
    text-align: center;
    margin-top: 20px;
}
.foo1 p img
{
    width: 30px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    transform: translateY(8px);
}
.foo1 ul
{
    list-style: none;
    margin-top: 20px;
    translate: -19px;
}
.foo1 ul li
{
    display: inline;
    margin: 5px 10px;
}
.foo1 ul li a 
{
    color: #000;
    font-size: 25px;
}
.foo1 ul li a:hover
{
    color: #ffa600;
    transform: scale(1.2);
}
@media only screen and (max-width: 600px){

    header
    {
        background-image: url(./images/shop1.jpg);
        background-position: center;
        background-size: cover;
    }
    section
    {
        margin: 20px 0;
    }
    .product-flex .product-card
    {
        width: 150px;
        height: auto;
        background-color: #005e42;
        padding: 15px;
        text-align: center;
        border-radius: 20px;
        transition: 0.5s;
    }
    .product-flex .product-card img
    {
        width: 100px;
        aspect-ratio: 1/1;
        background-size: contain;
    }
    .product-flex .product-card:hover
    {
        background-color: rgb(0, 0, 139);
        transform: scale(1.1);
    }

}