/* Footer */

.footer {
	background: #111;
	color: white;

	padding: 30px 40px;

	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;

	flex-wrap: wrap;
}

/* each column */
.footer p {
	flex: 1;
	margin: 0;
}

/* LEFT */
.footer p:first-child {
	text-align: left;
}

/* CENTER */
.footer p:nth-child(2) {
	text-align: center;
}

/* RIGHT */
.footer p:last-child {
	text-align: right;
	font-size: 0.85rem;
	opacity: 0.7;
}

/* links */
.footer a {
	color: white;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
	.footer {
		flex-direction: column;
		text-align: center;
	}

	.footer p,
	.footer p:first-child,
	.footer p:nth-child(2),
	.footer p:last-child {
		text-align: center;
	}
}
