:root {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #050805;
  color: #76ff8a;
  font-family: monospace;
  display: grid;
  place-items: center;
}

.terminal {
  width: min(900px, 92vw);
  border: 1px solid #1f5;
  padding: 2rem;
  box-shadow: 0 0 30px rgba(70, 255, 120, 0.12);
  background: rgba(0, 20, 0, 0.85);
}

input, button {
  background: #020;
  color: #76ff8a;
  border: 1px solid #1f5;
  padding: 0.6rem 0.8rem;
  font-family: inherit;
}

a {
  color: #9cffab;
}

hr {
  border: none;
  border-top: 1px solid #1f5;
}

.cursor {
  display: inline-block;
  margin-left: 4px;
  animation: blink 1s steps(2, start) infinite;
}

.error {
  color: #ff4d4d;
}

@keyframes blink {
  to { visibility: hidden; }
}

.image-row {
  display: flex;
  gap: 1rem; /* space between images */
}

.image-container img {
  max-width: 100%;
  height: auto;
}

.image-container {
  flex: 1;
}