body{
    font-family:Arial;
    background:#f5f5f5;
    margin:0;
}

.title{
    text-align:center;
    padding:30px;
}

.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    padding:20px;
}

.product-card{
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.product-card h2,
.product-card p{
    padding:10px;
}