* {
	color: white;
	font-family: "Courier New", Courier, monospace;
}

html, body {
	background-color: #061306;
}

h1 {
	text-align: center;
}

h1, h2, h3, img, input, select {
	margin: 6px 0;
}

audio, img, input[type="image"] {
	outline: none;
	vertical-align: middle;
}

input[type="checkbox"], input[type="file"], input[type="submit"], label, select {
	cursor: pointer;
}

input[type="number"]:hover, input[type="submit"]:hover, select:hover, code:hover {
	border: 1px solid #80FF80;
}

input[type="number"]:active, input[type="submit"]:active, select:focus, code:focus {
	border: 1px solid white;
}

input[type="number"], input[type="submit"], select, code {
	background-color: transparent;
	border: 1px solid #00FF00;
	border-radius: 8px;
	box-sizing: border-box;
	width: 100%;
}

input[type="number"], select {
	font-size: medium;
	height: 32px;
	padding-left: 8px;
}

input[type="submit"] {
	box-shadow: 0 0 16px #00FF00;
	font-size: large;
	height: 48px;
}

input[type="submit"]:hover {
	box-shadow: 0 0 16px #80FF80;
}

input[type="submit"]:active {
	box-shadow: none;
	outline: none;
}

form, #result {
	border: 2px solid #00FF00;
	border-radius: 8px;
	box-shadow: 0 0 32px #00FF00;
	margin: 8px 8%;
	padding: 12px 24px;
}

code {
	display: block;
	font-size: medium;
	height: 16em;
	margin: 6px 0 12px 0px;
	overflow: auto;
	padding: 8px;
	resize: vertical;
}

code:empty:before {
	content: attr(data-placeholder);
	color: gray;
}

#destination, #disillusion, #inputPlayer, #options, #outputPlayer, #result, #rosen, #source {
	display: none;
}

code > span {
	color: gray;
}

#spinner {
	animation: spin 1s linear infinite;
	border: 8px solid #008000;
	border-radius: 50%;
	border-top: 8px solid #00FF00;
	float: right;
	height: 16px;
	-webkit-animation: spin 1s linear infinite;
	width: 16px;
}

@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}