/* Grid Layout */

.grid {
	display: grid;
	max-width: 1000px;
	grid-template-columns: repeat(auto-fill, minmax(200px, max-content));
	grid-template-rows: repeat(3, 200px);
	grid-gap: 25px;
	justify-content: center;
}
