	/* Media & Gallery*/
	
	/* GalleryLayout */
		
	.galleryStatus{
		font-size: 3em;
		color: yellow;
	}


	.galleryLayout {
		display: grid;
		grid-template-columns: auto auto auto auto;
		padding: 50px;
	}
	
	
	
	
	
/* responsive adjustments */
	@media only screen and (max-width: 1300px) {	
	.galleryLayout {
		display: grid;
		grid-template-columns: auto auto;
	}
	
/* responsive adjustments */
	@media only screen and (max-width: 800px) {
		
	.galleryLayout {
		display: grid;
		grid-template-columns: auto;
		place-self: center;
	}
