
	.container2
	{
		display: grid;
		max-width: 1200px;
		border: 1px solid blue;
		margin-bottom: 100px;
		grid-template: repeat(2, 100px) / repeat(3, 150px);
		justify-content: center;
		grid-auto-flow: column; /* Dodaje automatycznie nowe boxy w nowej kolumnie / rzedzie */
	/*	grid-auto-flow: row; dense; */
	}

	.container1
	{
		display: grid;
		max-width: 1200px;
		border: 1px solid blue;
		grid-template: repeat(2, 100px) / repeat(3, 150px);
		grid-auto-rows: 200px;  /* Dodaje automatycznie nowe boxy w nowym rzedzie i ustawia im wysokosc 200px */
	/*  grid-auto-columns: 200px;  */
		justify-content: center;
	}
	
	.box
	{
		border: 1px solid red;
	}
	
	p
	{
		text-align: center;
		margin-bottom: 50px;
	}