#privacyPolicyTextContainer {
	background-color: #f55430;
	box-sizing: border-box;
	display: none;
	height: fit-content;
	width: 100%;
	padding: 0.5em;
	position: fixed;
		bottom: 0px;
	z-index: 1;
}
.privacyPolicyHeader {
	font-family: "Geoform";
	font-size: 1.5em;
	margin: 0.1em;
}
.privacyPolicyText {
	font-family: "Basic";
	font-size: 1em;
	margin: 0.1em;
}
.privacyPolicyLink {
	box-shadow: inset 0em 0em 0em 0em white;
	color: white;
	font-weight: bolder;
	padding: 0em 0.15em;
	text-decoration: none;
	transition: 0.1s all;
}
.privacyPolicyLink:hover {
	box-shadow: inset 0em -1.3em 0em 0em white;
	color: #f55430;
	transition: 0.1s all;
}
.privacyPolicyButton {
	background-color: rgba(0, 0, 0, 0);
	border: none;
	border-radius: 0.2em;
	color: white;
	cursor: pointer;
	font-weight: bolder;
	padding: 0.25em 0.5em;
	transition: 0.1s all;
}
.privacyPolicyButton:hover {
	background-color: #F77A5E;
	font-size: 1.1em;
	text-decoration: underline white solid 2px;
	transition: 0.1s all;
}