html, body {overflow: hidden}

body {
  color: white;
  font-family: "Courier New", monospace;
  font-size: 16px;
  padding: 0;
  background-color: black;
  background-size: cover;
  line-height: 16px;
}

br {
  display: block;
  margin-top: 16px;
}

a {
  text-decoration: none;
  color: white;
}

a::before {
  content: "<";
}

a::after {
  content: ">";
}

a:hover {
  text-decoration: underline;
}

ol {
  list-style-type: decimal-leading-zero;
}

.centered {
  text-align: right;
}

.indent {
  text-indent: 2em;
}

.info_messages {
  padding-bottom: 16px;
}

.small_screen {
  display: none;
}

@media only screen and (max-width: 768px) {
  .small_screen {
    display: block;
  }
}

#console {
  word-break: break-all;
}

.hostname {
  color: lime;
}

.currdir {
  color: lightblue;
}

.index {
  color: lightblue;
}

#userinput {
  word-break: break-all;
  overflow: auto;
}

#userinput:focus {
  outline: none;
}

.console_top {
  border-bottom: solid green 1px;
  word-break: break-word;
}

.console_default {
  width: 100%;
  height: 98vh;
  overflow-y: scroll;
}

.console_split_left {
  width: 40%;
  max-width: 99%;
  float: left;
  border-right: solid green 1px;
  height: 98vh;
  overflow-y: scroll;
  resize: horizontal;
}

.console_split_right {
  padding-left: 1em;
  height: 98vh;
  overflow-y: scroll;
}

::selection {
  color: black;
  background: white; /* WebKit/Blink Browsers */
}
::-moz-selection {
  color: black;
  background: white; /* Gecko Browsers */
}