grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	grid-auto-rows: 150px;
	grid-gap: 10px;
	margin-top:40px;
	margin-bottom: 90px;
}

[short] {
	grid-row: span 1;
	background-color: #ececec;
/*	background-color: green;*/
}

[tall] {
	grid-row: span 2;
	background-color: #ececec;
/*	background-color: crimson;*/
}

[taller] {
	grid-row: span 3;
	background-color: #ececec;
/*	background-color: blue;*/
}

[tallest] {
	grid-row: span 4;
	background-color: #ececec;
/*	background-color: gray;*/
}

grid-item {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3em;
	font-weight: bold;
	color: white;
	transition: all 200ms ease-in-out;
	transform-origin: center;
	overflow: hidden;
}

grid-item:hover {
	transform: scale(1.05);
}

grid-item > img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* or "contain" */
}

.gallery-section-title {
	font-size:2.55rem;
	font-weight:150;
	color: #65686f;
	text-align: left;
	max-width:1000px;
	margin-top:50px;
	margin-bottom: 20px;
}