body {
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	text-align: center;
	line-height: 1.4;
	background-color: #173561;
	margin: 0;
}

.kontener {
	display: grid;
	grid-template-columns: 1fr;
	align-content: center;
	width: calc(100% - 32px);
	max-width: 700px;
	height: 100vh;
	margin: 0 auto;
	text-align: center;
}

h1 {
	margin-top: 0;
	line-height: 1.2;
	font-weight: 500;
}

.kolumny {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.lewa img {
	width: 100%;
	max-width: 360px;
	display: block;
	margin: 0 auto;
}

.wpis {
	display: block;
}

a {
	color: #fff;
	text-decoration: none;
	display: block;
	line-height: 1.8;
}

a:hover {
	text-decoration: underline;
}

h2,
h3 {
	margin: 16px 0;
	line-height: 1.2;
	font-weight: 500;
}

h3 {
	margin-top: 1em;
}

@media screen and (min-width: 480px) {
	.lewa img {
		max-width: 300px;
	}
}

@media screen and (min-width: 1000px) {
	.kontener {
		text-align: left;
	}

	.kolumny {
		grid-template-columns: 360px 400px;
	}
}

@media screen and (min-width: 1300px) {
	body {
		font-size: 21px;
	}

	.kontener {
		max-width: 800px;
	}

}