body {
	background-color: #709090;
	font-family: 'Quicksand', sans-serif;
	overflow: hidden;
	margin: 0;
}
*,*::before,*::after {
	font-family: inherit;
}
.loading,
.logged-in-nowhere-to-go,
.logged-out,
.error {
	width: 100%;
	height: calc(20vmin + 1rem);
	line-height: calc(20vmin + 1rem);
	position: fixed;
	top: calc(50% - (10vmin + .5rem));
	left: 0;
	text-align: center;
	font-size: calc(1.5vmin + 1rem);
	color: white;
	background-color: rgba(0,0,0,0.5);
	text-shadow: 0 0 3px black;
	box-shadow: 0 0 0 1px rgba(255,255,255,.3);
	letter-spacing: .125rem;
	white-space: nowrap;
}
.logged-in-nowhere-to-go .loggedin-text {
	line-height: calc(3vmin + 1rem);
	padding-top: 5vmin;
}

.logged-out .link{
	text-decoration: none;
	color: white;
}
.logged-out .link .subtext {
	position: absolute;
	width: 100%;
	margin-top: -18vmin;
	font-variant: all-small-caps;
	font-size: 75%;
	letter-spacing: 10px;
}

.error {
	line-height: normal;
	overflow: auto;
}
.error-title {
	padding: 6px;
	background-color: rgba(0,0,0,0.1);
}
.error-blurb {
	padding: 10px;
	font-size: calc(1vw + 0.3rem);
	white-space: normal;
}
.error-code {
	font-size: 8pt;
	color: black;
	background-color: rgba(255,255,255,0.8);
	width: 30%;
	margin-left: 35%;
	border-radius: 8px;
	text-shadow: 0 0 0px black;
	font-weight: bold;
	letter-spacing: 0.25rem;
}
.background {
	background-image: url(/egistix-background.jpg);
	background-size: cover;
	width: 140%;
	height: 30vmin;
	position: fixed;
	pointer-events: none;
	top: calc(50% - 15vmin);
	left: -20%;
	background-position: top left;
	background-color: rgba(0, 0, 0, 0.25);
	overflow: hidden;
	animation: scale 5s ease alternate infinite;
	filter: saturate(0.5) opacity(0.8) blur(30px);
}
@keyframes scale {
	0% {
		transform: scale(.9);
	}
	100% {
		transform: scale(1);
	}
}