* {
  margin: 0;
}

html, body {
  height: 100%;
}

body{
	padding: 10px 20px;
  font-family:-apple-system,BlinkMacSystemFont,helvetica neue,roboto,arial,sans-serif;
  font-size: 18px;
}

a {
  text-decoration: underline;
  color: inherit;
}

a:hover, a:visited {
  color: #222;
}


h1 {
  font-size: 2rem;
  font-weight: 400;
	color: #222;
	margin: 0 0 30px;
}

.site {
  display: flex;
  min-height: 100vh;
  flex-direction: column; }

.site-content {
  flex: 1; }

/*.main {
  background-color: #fafafa;
}*/

.fa {
  color: #222;
}

.button {
	color: #222;
	background: linear-gradient(#eee, #ddd);
	border: 1px solid #222;
	border-radius: 3px;
	padding: 7px;
	margin-right: 5px;
	transition: .3s;
	font-size: 1em;
}

.button:active {
	background: linear-gradient(#ddd, #eee);
}

.button:hover, button:focus {
	box-shadow: 0 0 2px #222;
}

#execute {
	margin-top: 5px;;
	width: 10%;
	min-width:100px;
}

.CodeMirror {
  border: 1px solid #222;
  height: auto;
}
.CodeMirror-scroll {
  overflow-y: hidden;
  overflow-x: auto;
}

.error {
	color:red;
	transition:.5s;
	overflow:hidden;
}

#output {
	overflow: auto;
}

table {
	width:auto;
	margin:auto;
	border:1px solid #222;
 	border-collapse:collapse;
 	margin-bottom:10px;
}

th, td {
	border:1px solid #777;
}

footer {
  height: 30px;
  padding: 0px;
	font-size:.8em;
	color: #828895;
}
