body {
  background: black;
  color: #00ffea;
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 0;
}

.terminal {
  width: 90%;
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #111;
  border: 2px solid #0ff;
  border-radius: 10px;
  box-shadow: 0 0 20px #0ff;
}

.output {
  height: 400px;
  overflow-y: auto;
  margin-bottom: 10px;
}

.input-line {
  display: flex;
  align-items: center;
}

.prompt {
  color: #0ff;
  margin-right: 10px;
}

input[type="text"] {
  background: transparent;
  border: none;
  color: #0ff;
  width: 100%;
  font-size: 1rem;
  outline: none;
}

.cmd {
  color: #f0f;
}

.title {
  color: #ff00ff;
}

a {
  color: orange;
  text-decoration: underline;
}

img {
  border: 2px solid #0ff;
  border-radius: 5px;
  margin-top: 5px;
  max-width: 100px;
}
