body {
    background: #063627;
    color: #9adbc6;
    text-align: center;
    font-family: monospace;
  }
  #map {
    float: left;
    position: absolute;
    left: 40%;
    top: 0;
  }
  #shell {
    scroll-behavior: smooth;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    text-align: left;
    position: absolute;
  }
  #commandBox {
    font-size: 120%;
    height: 5%;
    width: 100%;
    display: flex;
  }
  #input {
    color: #9adbc6;
    background: #063627;
    border: 2px solid #9adbc6;
    width: 80%;
    height: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  #input::placeholder {
    color: #9adbc6;
  }
  #submit {
    color: #9adbc6;
    width: 20%;
    height: 100%;
    background: #063627;
    border: 2px solid #9adbc6;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  #outputDiv {
    word-wrap: break-word;
    padding: 1.5%;
    border: 2px solid #9adbc6;
    background: #043022;
    font-size: 120%;
    width: 100%;
    height: 95%;
    top: 5%;
    position: absolute;
    overflow: auto;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    scrollbar-color: #9adbc6 #063627;
  }