﻿body {
	margin: 0;
	font-family:Roboto;
	overflow: hidden;
}

.padded {
	text-align: right;
	padding-right: 0.5em;
	color: gray;
}

.border {
	border-top: dotted #404040 1px;
}

.icon {
	display: inline-block;
	min-width: 1em;
	text-align: center;
	color: orange;
	font-size: 1em;
}

header {
	position: absolute;
	z-index: 10;
	margin-top: 0;
	margin-left: 1em;
	text-shadow: 0 0 2px gainsboro;
}

header h1 {
	font-size: 1.25em;
	margin-bottom: 0.15em;
	font-weight: normal;
}

header h2 {
	font-size: 1em;
	margin: 0;
	font-weight: 500;
}

header h3 {
	color: dimgray;
	font-size: 0.85em;
	margin: 0;
	font-weight: 300;
	text-shadow: none;
}

header h3 a {
	color: dimgray;
	text-decoration: none;
	border-bottom: dotted 1px dimgray;
}

header h3 a:hover {
	color: black;
}

header img {
	height: 1em;
	position: relative;
	top: 0.15em;
	opacity: 0.75;
}

#spinner {
	position: fixed;
	z-index: 1;
	left: 49%;
	top: 45%;
	animation: flash 1s 6;
	border: none;
	border-left: 0.5px solid lightgray;
	border-right: 0.5px solid lightgray;
	border-radius: 0.25em;
}
#spinner::before {content:'\0022EE\0022EE\0022EE'}
@keyframes flash{
	100% {opacity:0;transform:scale(4);}
}