
/*-------------------
---------------------
---CONTENT--- 
---------------------
-------------------*/

.gallery-container {
	position: relative;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 0.625em;
	padding: 0.625em;
	max-width: 75rem;
	margin: min(5rem, 15svh) auto 0;
	z-index: 1;
	overflow: hidden;
}

.gallery-container img {
	width: 100%;
	height: auto;
}