.container{
	width:100%;
	margin:auto;
}
.subcontainer{
	width:100%;
	margin:auto;
}
.grid{
	display: grid;
	grid-template-columns: 1fr, 1fr, 1fr;
	gap:1rem;
	padding:20px;
	overflow-x:hidden;
}
.img{
	width:100%;
	min-height:275px;
	background-position: center;
	background-size: cover;
	border-radius: 10px;

	outline:var(--prim_clr) 2px solid;
	outline-offset: 0.25rem;
	margin:0.15rem;
}
.img:nth-child(1){
	background-image: url(../gfx/Galleries/img-1.jpg);
}
.img:nth-child(2){
	background-image: url(../gfx/Galleries/img-2.jpg);
}
.img:nth-child(3){
	background-image: url(../gfx/Galleries/img-3.jpg);
}
.img:nth-child(4){
	background-image: url(../gfx/Galleries/img-4.jpg);
}
.img:nth-child(5){
	background-image: url(../gfx/Galleries/img-5.jpg);
	grid-row:2/4;
}
.img:nth-child(6){
	background-image: url(../gfx/Galleries/img-6.jpg);
}
.img:nth-child(7){
	background-image: url(../gfx/Galleries/img-7.jpg);
	grid-row: 3/5;
	grid-column: 1/2;
}
.img:nth-child(8){
	background-image: url(../gfx/Galleries/img-8.jpg);
}
.img:nth-child(9){
	background-image: url(../gfx/Galleries/img-9.jpg);
	grid-column: 2/4;
}


/* ==== Mobile Device Settings ===== */
@media only screen and (max-width:600px){
	.img{
		min-height: 75px;
		width: 100%;

	}
}