body {
	background-color: lightgray;
	font-family: Futura, Avenir, sans-serif;
	margin: 0;
}

#statusbar {
	height: 24px;
	width: 100%;
	position: fixed;
	top: 0;
	text-align: right;
	background-color: #6D6D6D;
}

.inverted {
	filter: invert(100);
}

#ccenter {
	display: inline;
}

#date {
	color: white;
	position: relative;  /*Why does this align with the bottom of the container otherwise?*/
	display: inline;
	top: -7px;
	margin-left: 4px;
	margin-right: 16px;
	line-height: 24px;
	font-family: "system-ui", "Avenir", "sans-serif";
	font-size: 13px;
}

.zoom {
	margin-top: 100px;
	flex-direction: row-reverse;
	margin-left: -100px;
}

.container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.container .left {
	margin-left: 100px;
}

.container .right {
	text-align: center;
	margin-top: 30px;
	margin-left: 100px; 
	margin-bottom: 30px;
}

.tight {
	font-kerning: none;
}

.container .right h1 {
	font-weight: normal;
	margin-bottom: 0;
}

.container .right p {
	margin-top: 5px;
}

a.download {
	width: 200px;
	height: 50px;
	margin-top: 20px;
	background: #8500C3;
	display: block;
	color: white;
	text-decoration: none;
	border-radius: 25px;
	font-size: 20px;

	box-shadow: 0px 3px 3px darkgray;
}

a.download:hover {
	text-decoration: none;
}

a.download:active {

	box-shadow: none !important;
}

a.download .label {
	line-height: 50px;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.key {
	font-family: "system-ui", "Avenir", "sans-serif";
	font-size: 14px;
	background: #454545;
	width: 65px;
	height: 65px;
	color: white;
	border-radius: 10px;
	user-select: none;
	cursor: pointer;

	position: relative;
}

.key.up {
	box-shadow: 4px 4px black;
}

.key.down {
	left: 4px;
	top: 4px;
	box-shadow: 0;
}

.key .key-label {
	user-select: none;
	-webkit-user-select: none;
	position: absolute;
	bottom: 5px;
	left: 8px;
}

.version-number {
	font-style: italic;
	font-size: 12px;
}

.demo {
	margin-top: 40px;
	margin-bottom: 45px;
	position: relative;
	line-height: 1.5em;
}

.demo .arrowButton {
	position: relative;
}

#clickMe {
	position: absolute;
	left: -130px;
}

.demo ul {
	margin-top: 10px;
	margin-bottom: 0;
}

.features {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: white;
	line-height: 1.5em;
}

.features ul {
	margin: 0;
}

footer {
	font-size: 14px;
	margin-top: 15px;
	margin-bottom: 15px;
	text-align: center;
	line-height: 1.75em;
}

#credits {
	margin-top: 24px;
	line-height: 1em;
}

.hidden {
	display: none;
}

.leftside {
	text-align: right;
	width: 300px;
	padding-right: 5px;
}

.rightside {
	text-align: left;
	width: 300px;
	padding-left: 5px;
}

.byeline {
	color: gray;
}

.byeline a{
	color: gray;
}

/* fading anmiation */
.fadable {
	opacity: 0;
}

.fadeOut {
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.fadeIn {
	opacity: 100;
	transition: opacity 1.5s ease-in-out;
}

