html, body, ul, ol, li, form, fieldset, legend
{
	font-family: Verdana;
	color: #555;
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6, p { margin-top: 0; }
body {
	background-color: #f0f0f0;
	display: flex;
	flex-flow: column;
}

* {
	box-sizing: border-box;
}

.navContainer {
	display: flex;
	width: 100vw;
	font-size: 25px;
	line-height: 200%;
	border-bottom: 1px solid #d0d0d0;
}
#icon {
	margin-left: 20px;
	font-size: 30px;
}
.button {
	width: 130px;
	text-align: center;
	border-left: 1px solid #d0d0d0;
	transition: all 0.3s;
}
.button:hover {
	background-color: #555;
	color: white;
	cursor: pointer;
}
.fill {
	flex: 1;
}

li {
	list-style-type: none;
}

#content {
	width: 100vw;
}

#CodeContainer{
	width: 550px;
	height: 300px;
	display: inline-block;
}
#output {
	font-family: Inconsolata;
	font-size: 20px;
	width: 550px;
	height: 300px;
	display: inline-block;
	background-color: #222;
	padding: 11px;
	color: white;
	overflow: auto;
}
#program {
	width: 100%;
	height: 100%;
	resize: none;
	overflow: scroll;
	font-family: Inconsolata;
	font-size: 20px;
	padding: 10px;
}
#runButton{
	margin-top: 20px;
	display: block;
	height: 35px;
	font-size: 20px;

	background-color: #f9f9f9;
}
#input {
	display: block;
	width: 400px;
	height: 200px;
	background-color: #222;
}
#inputArea {
	width: 100%;
	height: 100%;
	padding: 10px;
	font-family: Inconsolata;
	font-size: 20px;
}
.outputNewline{
	display: block;
}
.CodeMirror {
	font-size: 18px;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  background-color: #666;
  padding: 2px 16px;
  color: white;
}

.modal-body {
	padding: 2px 30px;
	min-height: 400px;
	position: relative;
}

.sintaxaList{
	list-style-type: circle;
}

.bottom{
	position: absolute;
	bottom: 0;
}

#thumbs-up{
	width: 200px;
	height: auto;
}