/* class used to control the placement of images in mobile view */
.container .grid_image { 
	display: grid;
	grid-column: 1; 
	max-width: 100%;
}

@media screen and (max-width: 900px) {
	.container .grid_image { 
	/* center all images on page */
		grid-column: 1/ span 3;
		place-items: center;
	}
}

.container .hcu { grid-column: 1 / span 3; }
.container .hcu p { margin-top: 0px; } /* remove margin above section title */
.container .wyac { grid-column: 2 / span 2; }
.container .er { grid-column: 1 / span 3; }
.container .er p { margin-bottom: 10px; }

@media screen and (max-width: 900px) {
	/* when the viewport too small, make content in 1 column */
	.container .hcu {  grid-column: 1/ span 3; }
	.container .wyac {  grid-column: 1/ span 3; }
	.container .er {  grid-column: 1/ span 3; }
}