body {
    font-family: Arial, sans-serif;
    text-align: center;
}
#products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.product {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px;
    width: 250px;
}
.product img {
    width: 100%;
}
