	.picture p {
    display: grid;
    grid-template-columns: repeat(3,auto);
    gap: 10px;
}
.picture img {
    width: 100%;
    height: 250px;
}
@media screen and (max-width:992px) {
    .picture p {
    grid-template-columns: repeat(2,auto);
    }
}
@media screen and (max-width:567px) {
    .picture p {
    grid-template-columns: repeat(1,auto);
    }
}
