footer {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 5vh;
	width: 100%;
	background-color: var(--secondary-color);
	color: var(--primary-color);
	font-size: 1.5rem;
	font-weight: 600;
	border-top: 0.1rem solid var(--primary-color);
}

footer .info {
	margin: 0 0 0 2.5rem;
}

footer .contact {
	margin: 0 2.5rem 0 auto;
}

@media (orientation: portrait) {
	footer {
		height: 10rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	footer .info {
		width: 80%;
		text-align: center;
		margin: 0.5rem auto 0 auto;
	}

	footer .contact {
		text-align: center;
		margin: 0.5rem auto 0 auto;
	}
}