* {
	box-sizing: border-box;
}

body {
	background-color: #171717;
	color: #ffffff;
	margin: 0;
	text-align: center;
}

pre {
	margin-top: 50px;
}

#button {
	font-size: 108pt;
	font-family: 'Xanh Mono', monospace;
	display: block;
	margin-top: 20px;
	margin-bottom: 50px;
	margin-left: 40%;
	margin-right: 40%;
}

.play {
	color: #00ff00;
	cursor: pointer;
}

.stop {
	color: #ff0000;
	cursor: pointer;
}

.error {
	color: #d7d7d7;
	cursor: default;
}

.load {
	color: #0000ff;
	font-size: 48px !important;
}

.load::before {
	content: " ";
	animation-duration: 0.67s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-name: spinner;
}

#nowPlaying p {
	color: #d700ff;
        font-family: 'Xanh Mono', monospace;
	font-size: 21pt;
	margin-bottom: 0;
}

#mdString {
	/*background: #190000;*/
	color: #dada00;
        font-family: 'Bitter', serif;
	font-size: 21pt;
	padding: 3px;
	/*border: 3px inset #d700ff;*/

}

#mdStringNS {
	/*background: #190000;*/
	color: #d70011;
        font-family: 'Bitter', serif;
	font-size: 21pt;
	/*border: 3px inset #d700ff;*/
}

#infotxt .direct {
	font-size: 18px;
        font-family: 'Bitter', serif;
	color: #d7d7d7;
	margin-top: 1em;
}

#infotxt .direct a {
	color: #d7d7d7;
	text-decoration: underline;
}

#specialMsg {
	border: 1px #dada00 solid;
	margin: 15%;
}

#specialMsg p {
	color: #d700ff;
        font-family: 'Bitter', serif;
	font-size: 14pt;
}

#specialMsg a {
	font-size: 14pt;
}

#infotxt {
	display: block;
	color: #dada00;
        font-size: 18pt;
	margin-top: 10%;
}

#infotxt p {
	margin: 0;
        font-family: 'Bitter', serif;
	color: #dada00;
}

#infotxt span {
	font-size: 21px;
        font-family: 'Xanh Mono', monospace;
	color: #d700ff;
}

a {
	font-size: 18pt;
}

a:link, a:visited {
	color: #0092ff;
	text-decoration: none;
}

a:hover {
	color: #0092ff;
	text-decoration: underline;
}

a:active {
	color: #dada00;
	text-decoration: underline;
}

.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	/*background: rgba(255, 255, 255, 0.2);
	transition: opacity 500ms;
	-moz-transition: opacity 500ms;
	-webkit-transition: opacity 500ms;*/
	visibility: hidden;
	opacity: 0;
	z-index: -1;
}

.overlay:target {
	visibility: visible;
	opacity: 1;
	z-index: 1;
}

.popup {
	margin: 70px auto;
	padding: 20px;
	/*background: rgba(119, 0, 159, 0.8);*/
	background: rgba(42, 42, 42, 0.9);
	border-radius: 5px;
	width: 60%;
	position: relative;
	transition: all 5s ease-in-out;
	-webkit-transition: all 5s ease-in-out;
	-moz-transition: all 5s ease-in-out;
	overflow: scroll;
	max-height: 75%;
	z-index: 2;
}

.popup .close {
	position: absolute;
	top: 20px;
	right: 20px;
	transition: all 200ms;
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	font-size: 42px;
	font-weight: bold;
	text-decoration: none;
	color: #aaaaaa;
}

.popup .close:hover {
	color: #dada00;
}

.popup h1 {
	font-family: 'Xanh Mono', monospace;
	font-weight: normal;
	color: #d700ff;
}

.popup p {
	color: #dadada;
	font-size: 14pt;
}

.popup a {
	font-size: 14pt;
}

@keyframes spinner {
	0% {
		content: "\25CB";
	}
	25% {
		content: "\25D4";
	}
	50% {
		content: "\25D1";
	}
	75% {
		content: "\25D5";
	}
	100% {
		content: "\25CF";
	}
}


header h1 {
        font-family: 'Xanh Mono', monospace;
        font-weight: normal;
        color: #d700ff;
}
label {
        color: #dadada;
        font size: 14pt;
        font-family: 'Bitter', serif;
}
input, textarea {
        color: #dada00;
        background-color: #2a2a2a;
}

main p {
        font-family: 'Bitter', serif;
        margin: 20px 65px 25px 65px;
}
