/* The container holding the images */
.sample-gallery {
    display: flex;
    gap: 15px;            /* Space between the drawings */
    justify-content: space-around; 
    align-items: center;
    padding: 10px;
}

/* Styling the images to be "somewhat small" */
.sample-gallery .product {
    width: 20%;         /* Adjust this size to your liking */
    height: auto;         /* Maintains aspect ratio */
    border-radius: 8px;   /* Optional: softens the edges */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Optional: makes them pop */
    transition: transform 0.3s ease;
}

/* Subtle hover effect for a "featured" feel */
.sample-gallery .product:hover {
    transform: scale(1.05);
}