html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
}

#output {
  font-family: monospace;
  height: calc(100% - 70px);
  border: 1px solid #000;
  overflow-y: scroll;
  background: rgba(0, 0, 0, .8);
  color: #ccc;
  padding: 10px;
  white-space: pre-wrap;
  font-size: 14px;
}

#output>div>span {
  display: inline-block;
  padding: 2px 0
}

#input-container {
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .8);
}

#input {
  width: calc(100% - 16px);
  font-size: 16px;
  height: 30px;
}

#connect {
  margin-bottom: 10px;
}