.footer {
	width:100%;
	float:left;
	height:100vh;
	background-color:rgb(var(--veryLightBackground));
	color:rgb(var(--darkColor));
	position: relative;

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;

	background-image:url('../../pictures/decoration/topLeft.svg'), url('../../pictures/decoration/topMiddle.svg'), url('../../pictures/decoration/topRight.svg'), url('../../pictures/decoration/bottomLeft.svg'), url('../../pictures/decoration/bottomMiddle.svg'), url('../../pictures/decoration/bottomRight.svg');
	background-size:12em auto, 20em auto, 15em auto, 15em auto, 24em auto, 16em auto;
	background-position:left top, top center, right top, left bottom, center bottom, right bottom;
	background-repeat: no-repeat;
}

.endOfPageLine {
	position: absolute;
	bottom:0;
	left:0;
	width:100vw;
	height:0.2em;
	background-color:rgb(var(--primaryColor));
}

.copyright {
	position:absolute;
	bottom:10em;
	left:15%;
	color:rgb(var(--blackColor));
}

.smallerText {
	font-size: 0.7em;
}

.footerDisclaimer {
	position:absolute;
	bottom:10em;
	right:15%;
}

.footerDisclaimer a {
	color:rgb(var(--darkColor));
	margin:0 0.5em;
}

.footerDisclaimer a:hover {
	color:rgb(var(--primaryColor));
	text-decoration: underline;
}