html, body {
	margin: 0;
	padding: 0;
	background-color: transparent;
}
.googlyEyes {
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	/* gap: 5%; */
}
.googlyEye {
	background-color: #fff;
	aspect-ratio: 1 / 1;
	border-radius: 100vw;
	/* border: 2px solid rgba(0, 0, 0, 1); */
	overflow: hidden;
	position: relative;
	margin: 0 -2%;
	box-shadow: -2vmax -4vmax 4vmax rgba(0, 0, 0, 0.5) inset;
}
.googlyEye-1 {
	width: 45%;
}
.googlyEye-2 {
	width: 30%;
}
.googlyEye > i {
	display: block;
	background-color: #000;
	aspect-ratio: 1 / 1;
	border-radius: 100vw;
	width: 40%;
	transition: all 1s ease-out;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	will-change: top, left;
}
.googlyEye > b {
	transition: height 1s ease;
	will-change: height;
	position: absolute;
	left: 0;
	right: 0;
	height: 0%;
	background-color: #000;
}
.googlyEye > b.upper {
	top: 0;
}
.googlyEye > b.lower {  
	bottom: 0;
}
.googlyEyes.is-bored > .googlyEye > b.upper {
	height: 30%;
}
.googlyEyes.is-bored > .googlyEye > b.lower {
	height: 0%;
}
.googlyEyes.is-focussed > .googlyEye > b.upper,
.googlyEyes.is-focussed > .googlyEye > b.lower {
	height: 10%;
}
.googlyEyes.is-focussed > .googlyEye > i {
	width: 45%;
}
.googlyEyes.is-focussed-2 > .googlyEye > b.upper,
.googlyEyes.is-focussed-2 > .googlyEye > b.lower {
	height: 25%;
}
.googlyEyes.is-focussed-2 > .googlyEye > i {
	width: 50%;
}
.googlyEyes.is-blinking > .googlyEye > b.upper,
.googlyEyes.is-blinking > .googlyEye > b.lower {
	transition-duration: 0.15s;
	height: 50%;
}

.topBar {
	position: absolute;
	top: 0.1rem;
	left: 0.25rem;
	right: 0.25rem;

	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: flex-start;
	align-content: flex-start;
	gap: 1rem;
}
.topBar > * {
	flex: 0 1 auto;
	z-index: 1;
}

.linkBar {
	position: absolute;
	bottom: 0.1rem;
	left: 0.25rem;

	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: flex-end;
	align-content: flex-end;
	gap: 1rem;

	/* font-size: 0.75em; */
}
.linkBar > * {
	flex: 0 1 auto;
	color: rgba(0, 0, 0, 0.75);
	z-index: 1;
}
.linkBar > .divider {
	color: rgba(0, 0, 0, 0.3);
}
.latestVersionBox {
	text-align: center;
	padding: 0.5rem 1rem;
	/* margin-left: auto; */
	border: 1px solid rgba(0, 0, 0, 0.4);
	background-color: #fff;
	/* box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25); */
}
.latestVersionBox > div {
	margin-bottom: 0.5rem;
}
.latestVersionBox > a {
	font-weight: bold;
	text-underline-offset: 3px;
}


body.hide-unnecessary-elements .topBar,
body.hide-unnecessary-elements .linkBar,
body.is-obs .topBar,
body.is-obs .linkBar {
	display: none;
}




