body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: rgb(231, 255, 255);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
    padding: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 20px;
    width: 312.5px;
    height: 380px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 250px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.product-card h3 {
    margin: 10px 0 5px;
}

.product-card p {
    color: #555;
}