footer {
	background: rgb(172, 154, 103);
	display: flex;
	justify-content: center;
	padding: 20px;
	color: black;
	font-weight: bold;
	line-height: 150%; /* vyska radku, aby na sobe nebyly tolik nalepene */
}

footer .container {
	display: flex;
	justify-content: space-around;
}

footer a {
	color: black;
	text-decoration: none;
	font-weight: bold;
}

footer a:hover {
	text-decoration: underline;
}

footer h3 {
	font-size: 2em;
	margin: 0.7em 0;
}

footer .podpora {
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media (max-width: 700px) {
	footer h3 {
		font-size: 1.2em;
	}
	footer .container {
		flex-direction: column;
	}
}