#SimpleGallery {
	display: flex; 
	flex-wrap: wrap; 
	flex-direction: row; 
	gap: 15px;
}
#SimpleGallery > div {
	flex: 1 0 auto; 
	width: 300px; 
	height: 260px; 
	padding: 4px; 
	background-color: #202020; 
	border-radius: 4px;
}
#SimpleGallery > div > img {
	width: 100%; 
	height: 100%; 
	object-fit: contain; 
	border-radius: 3px;
}