@import url("https://fonts.googleapis.com/css?family=Inconsolata:400,700");
/* ::selection {
    background: #FF5E99;
} */
body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  font-size: 17px;
  font-family: 'Inconsolata', monospace;
  color: #ccc;
  background-color: black;
  overflow-y: scroll;
  cursor: none;
}

#container {
  padding: 10px 20px 20px 30px;
}
#container h1 {
  font-size: 17px;
  font-family: 'Inconsolata', monospace;
  font-weight: 400;
  margin-bottom: 20px;
}
#container .input-line {
  display: flex;
}
#container .input-line .prompt {
  white-space: nowrap;
  color: #ccc;
  margin-right: 7px;
  display: flex;
  box-pack: center;
  box-orient: vertical;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
#container .cmdline {
  outline: none;
  background-color: transparent;
  margin: 0;
  width: 100%;
  font: inherit;
  border: none;
  color: inherit;
}
