* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
  font-family: "JetBrains Mono", monospace;
  color: #fff;
}

.terminal-container {
  min-height: 100vh;
  padding: 12px;
}

#terminal {
  width: 100%;
  min-height: 100vh;
  padding: 12px;
  overflow-y: auto;
}

#prompt-line {
  display: flex;
  align-items: center;
}

.prompt {
  margin-right: 6px;
}

input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  caret-color: #06d6a0;
  width: 100%;
}

.output {
  white-space: pre-wrap;
  margin-bottom: 8px;
}

.white {
  color: #ffffff;
}

.emerald {
  color: #06d6a0;
}

a {
  color: #06d6a0;
  text-decoration: underline;
}

@media (max-width: 600px) {
  #terminal {
    font-size: 0.9rem;
  }
}
