#footerContent {
	width: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	overflow: hidden;
}

#footerTextContainer {
	height: auto;
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
	overflow: hidden;
	padding: 0.375em 0vw;
}

.footerTextLink, .footerTextDecor {
	text-align: center;
}

.footerTextLink {
	margin: 0px 0.5em;
}

.footerTextDecor {
	margin: 0px 0em;
}

.footerTextLink a {
	color: rgba(255, 187, 50, 1.0);
	text-decoration: none;
	font-weight: bold;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.footerTextLink a:visited {
	color: rgba(255, 118, 50, 1.0);
}

.footerTextLink a:hover {
	text-decoration: underline;
}

.footerTextLink a:active {
	color: rgba(255, 255, 255, 1.0);
}

/* Phones. */
@media (max-width: 70em) {
	
	#footerTextContainer {
		flex-direction: column;
		justify-content: flex-end;
		align-items: center;
		padding: 0.125em 0vw;
	}
	
	.footerTextLink {
		margin: 0.25em 0vw;
	}
	
	/* Done this way as the language switch already uses the display property and would thus mess with these rules when triggered. */
	.footerTextDecor {
		position: absolute;
		visibility: hidden;
		height: 0px;
		width: 0px;
	}
	
	/* Landscape orientation. */
	@media (min-aspect-ratio: 5/3) {
		
		#footerTextContainer {
			flex-direction: row;
			justify-content: center;
			align-items: flex-end;
			height: 1em;
			padding: 0.375em 0vw;
		}

		.footerTextLink {
			margin: 0px 0.5em;
		}
	
		.footerTextDecor {
			position: static;
			visibility: visible;
			height: auto;
			width: auto;
		}
		
	}
	
}