html {
	font-size: 12pt;
	line-height: 1em;
}

body {
	background: white;
}

img {
	outline: 1px dotted black;
	max-width: 100%;
}

#searchLight {
	outline: none;
}

input {
	accent-color: #551a8b;
}

header {
	height: 2em;
	width: 100%;
	left: 2em;
	top: 1em;
	position: fixed;
}

footer {
	height: 2em;
	width: 100%;
	bottom: 0%;
	position: fixed;
}

#contactText {
	line-height: 0.15em;
	position: absolute;
	top: 0;
	left: 0;
}

#contactText .link {
	line-height: 1;
}

#imageDesc {
	line-height: 1em;
}

mark {
	animation: blinker .1s linear infinite;

	&:hover {
		animation-play-state: paused;
	}
}

@keyframes blinker {
	0% {
		background-color: #39FF14;
	}

	50% {
		background-color: yellow;
	}
}

.outer {
	display: table;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	pointer-events: none;
}

.middle {
	display: table-cell;
	vertical-align: middle;
}

.inner {
	pointer-events: all;
	margin-left: auto;
	margin-right: auto;
	width: 20em;
	background: white;
}

#innerTopMargin {
	margin-top: 7em;
}

#innerInfo {
	vertical-align: top;
	margin-top: 7em;
}

.content {
	max-width: 20em;
	margin: auto;
	color: black;
	margin-top: 9em;
}

.link {
	color: #0000ee;
	text-decoration: underline;
}

.linkClicked {
	color: #551a8b;
	text-decoration: underline;
}

.imageDiv {
	height: 15em;
	position: relative;
}

.scrollingText {
	overflow: hidden;
}

.scrollingText p {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0;
	text-align: center;
	/* Starting position */
	transform: translateX(100%);
	/* Apply animation to this element */
	animation: scroll-left 15s linear infinite;
}

/* Move it (define the animation) */
@keyframes scroll-left {
	0% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(-100%);
	}
}