body {
  margin: 0;
  height: 100vh;
  background-color: #050608;
  color: #dde7ff;
  font-family: monospace;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

main.terminal {
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  background: rgba(9, 11, 17, 0.9);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.terminal-body {
  flex: 1;
  min-height: 0;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}

@media (max-width: 640px) {
  .terminal-body {
    padding: 1.25rem 1.25rem 1.25rem 1rem;
  }
}

.prompt {
  margin: 0;
  color: #66ffbf;
}

.output {
  margin: 0;
  color: #dde7ff;
  opacity: 0.85;
}

.command {
  background-color: transparent;
  color: #66ffbf;
  border: none;
  font-family: monospace;
  padding-left: 0px;
  margin-left: -2px;
}

.command:focus {
  outline: none;
}

pre {
  display: inline-block;
  margin: 0;
}

.whoami-red {
  color: #ec374e;
}

a {
  color: #66ffbf;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}
