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,
.googlyEye > i > i {
	/* transition: all 1s ease-in-out; */
	/* transition: all 2s cubic-bezier(.68,-0.55,.31,1.45); */
	/* transition: all var(--easing-time, 1.5s) cubic-bezier(.56,2.04,.46,.61); */
	transition: all var(--easing-time, 1.5s) cubic-bezier(.56,2.04,.58,.77);
	/* transition: transform var(--easing-time, 1.5s) linear(0, 0.752 3.8%, 0.925 5.5%, 0.987 7.3%, 0.938 9%, 0.785 10.9%, -0.244 19.3%, -0.389 21.4%, -0.451 23.5%, -0.445 25.1%, -0.398 26.8%, 0.056 35.2%, 0.139 37.6%, 0.175 40%, 0.175 41.6%, 0.158 43.3%, -0.008 51.5%, -0.038 53.8%, -0.053 56.2%, -0.05 59.6%, -0.003 67.4%, 0.011 71.8%, 0 86%, 0); */
	/* transition: width var(--easing-time, 1.5s) cubic-bezier(.56,2.04,.58,.77); */
	/* transition: left var(--easing-time, 1.5s) cubic-bezier(.56,2.04,.58,.77); */
}
.googlyEye > i {
	position: absolute;
	top: 50%;
	left: 50%;

	display: block;
	width: 100%;
	transform-origin: 0% 50%;
	transform: rotateZ(0deg);

	/* height: 1px; background-color: red; */
}
.googlyEye > i > i {
	position: absolute;
	top: 0%;
	left: 0%; /* this is pupil distance from center */

	display: block;
	background-color: #000;
	aspect-ratio: 1 / 1;
	border-radius: 100vw;
	width: 40%;
	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 > 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 > 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);
}

body.hide-unnecessary-elements .topBar,
body.hide-unnecessary-elements .linkBar,
body.is-obs .topBar,
body.is-obs .linkBar {
	display: none;
}