Theme similar to “tiny” but with an image

I’m in the process of setting up a new site to showcase my artwork. I’ve been thinking about it some, and one thing that would be nice would be a way to have the front page be similar to the tiny theme or to Riley’s Theme but with an image to the right of the text. I’ve got images in all the pages that are linked from the front page of that site even (and though the first image is generally the best one for that purpose, I wouldn’t mind having to manually set the image for each page).

Any ideas on how I could get there? I’m in no real hurry at all; the website needs to be live in September for an art show, but before then, I’m mostly keeping it under wraps.

Thanks for any ideas!

Well, I tried the following CSS, which I think should work, but while only the first image displays for each entry, all the paragraphs still display.

.book :not(p:first-of-type) {
display: none;
}

.book p:first-of-type img {
max-height: 200px;
max-width: 200px;
display: flex;
}