footer {
	background-color: #2b3860;
	color: #bbbdc5;
	display: flex;
	padding: 30px;
	justify-content: space-around;
}

.footer-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.footer-container p {
	font-size: 0.7em;
}

.menu-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

footer h3 {
	font-size: 1em;
}

footer a {
	text-decoration: none;
	color: inherit;
}

footer a:hover {
	text-decoration: underline;
	text-decoration-color: #bbbdc5; /* to spowoduje, �e podkre�lenie b�dzie bia�e */
}

footer span {
	color: #8d8d8d;
}

footer img {
	fill: white;
}

@media screen and (max-width: 1000px) {
	footer {
		flex-direction: column;
	}

	footer .menu-container {
		display: none;
	}
}
