* {
	margin: 0;
	padding: 0;
}
html,body{
	height: 100%;
}
body {
	font-family: Roboto, 'Helvetica Neue', Arial, sans-serif;
	background: #1a1a1a;
	min-height: 100vh;
	color: #eee;
}


.window {
  width: 547px;
  background: GhostWhite;
  border-radius: 0.3rem;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.window .window-body {
  position: relative;
}
.window .window-body .code-input,
.window .window-body .code-output {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  border: none;
  font-family: 'PT Mono', monospace;
  font-size: 0.8rem;
  background: transparent;
  white-space: pre-wrap;
  line-height: 1.5em;
  word-wrap: break-word;
}
.window .window-body .code-input {
  opacity: 0.7;
  margin: 0;
  color: #999;
  resize: none;
}
.window .window-body .code-output {
  pointer-events: none;
  z-index: 3;
  margin: 0;
  overflow-y: auto;
  white-space: pre-line;
}
.window .window-body .code-output code {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 1rem;
  display: block;
  color: #fff;
  font-size: 0.8rem;
  font-family: 'PT Mono', monospace;
}

.token.punctuation,
.token.selector,

.token.property,




a.token {
  text-decoration: none;
}
.token.function,
.token.boolean,
.token.constant,
.token.keyword {
  color: rgb(147,199,99);
}
.token.string{
	color: rgb(217,85,193);
}
.token.number{
	color: rgb(255,205,34);
}
.token.tag-id {
  color: DodgerBlue;
}
.token.attr-name {
  color: CadetBlue;
}
.token.atrule .atrule-id {
  color: BlueViolet;
}
.token.comment {
	color: rgb(255,255,128);
}
.language-php .variable {
	color: rgb(103,140,177);
}
.token.delimiter{
	color: rgb(217,85,193);
}
.token.operator{
	color: rgb(232,226,183);
}