#content {
	position: relative;
}

body {
  background: #000;
}



#paper_canvas {
	height: 100%;
	width: 100%;
	position: absolute;
}

.preview {
    z-index: 10;

}

#code {
  position: absolute;
  width: 85%;
  left: 50%;
  transform: translateX(-45%);
  z-index: 5;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

}

#location {
	display: none;
}

 .input {
 	width: 60%;

 }


.input .cm-s-blackboard.CodeMirror:hover {
    background-color: #333;

}

.input .CodeMirror.cm-s-blackboard {
    background-color: #222;
}

.CodeMirror{
  font-family: monospace;
}

.input .cm-s-blackboard .CodeMirror-gutters {
	background-color: rgba(0, 0, 0, 0) ;
}

.button{
	width: 180px;
	color: #fff;
	height: 50px;
	border-radius: 50px;
	position: relative;
	margin-top: 15px;
	text-align: center;
	margin-right:500px;
	
}

.button p{
	position: absolute;
	font-size: 20px;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
}


.button:hover {

	cursor: pointer;
	background-color:rgba(25, 220, 203, 0.78);
	border-color: rgba(25, 220, 203, 0.78);
}


.navigation {
  postion:fixed;

}


@media only screen and (max-width: 1024px){


	.CodeMirror{
  font-size: 16px;
}
	#code{
		justify-content: center;
		width: 90%;
	}
	.preview{
		order: -1;
		margin-bottom: 20px;
	}

	.input{
		width: 85%;
	}
 .button{
 	margin-bottom: 20px;
 	margin-right: 0px;
 }














}