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

#terminal {
  padding: 20px;
  height: 100vh;
  overflow-y: auto;
}

.line {
  margin: 4px 0;
  white-space: pre-wrap;
}

.input-line {
  display: flex;
}

.prompt {
  margin-right: 8px;
}

input {
  background: transparent;
  font-family: "JetBrains Mono", monospace;
  border: none;
  color: white;
  outline: none;
  width: 100%;
  font-size: 16px;
}

.big-name {
  font-size: 34px;
  font-weight: bold;
  margin: 15px 0;
  border-right: 2px solid white;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 2.5s steps(22), blink 0.6s infinite alternate;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  50% { border-color: transparent }
}
