body {
  margin: 0;
  background-color: #000;
}

.root {
  display: grid;
  grid-template-columns: repeat(2, 1fr) 2fr;
  grid-template-rows: repeat(2, 1fr);
  height: 100vh;
  width: 100vw;
}

p {
  margin: 0 10px;
}

#terminalContainerMain {
  grid-row: span 2;
  grid-column: span 2;
}

terminal-component {
  display: block;
  overflow: scroll;
  scrollbar-width: none;
  font-family: "Courier New", Courier, monospace;
  font-size: 18px;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);

  box-sizing: border-box;
  height: 100%;
  background-color: #111;
  border: #000 4px solid;
}

.terminalContainer {
  height: 100%;
}

input {
  width: 0;
  height: 0;
  border: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
}

.terminal {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  background-color: #111;
}

.inputViewBox {
  margin: 10px;
  white-space: pre-line;
}

.output {
  padding: 10px;
  white-space: pre-line;
}

.inputPrefix {
  white-space: pre-line;
}

.cursor {
  color: #000;
  background-color: rgba(255, 255, 255, 0.87);
  animation: blink 1s steps(1) infinite;
  white-space: pre;
}

@keyframes blink {
  50% {
    color: rgba(255, 255, 255, 0.87);
    background-color: transparent;
  }
  100% {
    color: #000;
    background-color: rgba(255, 255, 255, 0.87);
  }
}

.command {
  color: rgb(128, 217, 50);
}

.user {
  color: rgb(128, 217, 50);
}

.link {
  color: rgb(194, 55, 254);
  text-decoration: none;
  text-decoration: underline;
  cursor: pointer;
}

.link:hover {
  color: rgb(128, 217, 50);
}
