body {
  max-width: 50em;
  margin: 1em auto;
}

p {
    color: brown;
    font-size: 1.1em;
    text-align: justify;
    font-family: "Times New Roman", Garamond, serif;
}
figure,
figcaption {
	margin: 0;
	padding: 0;
}

#gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
	gap: 1em;
	text-align: center;
}

#gallery figure {
	position: relative;
	color: black;
	background: white;
}

figure img {
	max-width: 100%;
	/*display: auto;*/
}

#gallery > figure > figcaption {
	position: absolute;
	bottom: 0;
	width: 100%;
	line-height: 3em;
	color: white;
	/*background: rgb(0 0 0 0.3);*/
}

#gallery > figcaption {
	grid-column: 1 / -1;
}

