body {
  min-width: 100vw;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  background-color: #121;
  -webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}

.console {
  font-family: "Fira Mono";
  width: 90%;
  height: 450px;
  box-sizing: border-box;
  border: #000;
  margin: 27px;
}

.console header {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-color: #555;
  height: 45px;
  line-height: 45px;
  text-align: left;
  padding-left: 17px;
  padding-right: 17px;
  color: #ddd;
}
p {
  padding: 0px;
  margin: 0px;
}
.console .consolebody {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  box-sizing: border-box;
  padding: 17px;
  padding-top: 7px;
  height: calc(100% - 40px);
  /* overflow: scroll; */
  /* font-weight: bold; */
  font-size: 11pt;
  background-color: #000;
  color: #48a000;
}
.t-green {
  color: #48a000;
}
.t-white {
  color: #eee;
}
.t-bold {
  font-weight: bold;
}

.console .consolebody p {
  line-height: 1.5rem;
}
.tab-1{
    padding-left: 7px;
}
.tab-2{
    padding-left: 14px;
}
.roboto-mono {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
}
