body {
  margin: 0;
  background: #0d0d0d;
  font-family: 'Courier New', monospace;
  color: #33ff33;
  height: 100vh;
  overflow: hidden;
}

.terminal {
  padding: 1em;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#output {
  flex: 1;
  overflow-y: auto;
  white-space: pre-wrap;
}

.input-line {
  display: flex;
  align-items: center;
}

.input-line span {
  color: #00ff00;
}

.input-line input {
  background: transparent;
  border: none;
  color: #33ff33;
  font-family: inherit;
  font-size: 1em;
  outline: none;
  flex: 1;
}

a {
  color: #00ffff;
  text-decoration: none;
}

img {
  margin-top: 10px;
  max-width: 300px;
  border: 2px solid #ff00ff;
  box-shadow: 0 0 10px #ff00ff;
}
