body {
  margin: 0;
  background: #0d1117;
  color: #00ff9c;
  font-family: "Courier New", monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.terminal {
  max-width: 700px;
  width: 90%;
}

.line {
  margin: 6px 0;
}

.prompt::before {
  content: "hcprajwal@system:~$ ";
  color: #58a6ff;
}

.blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.dim {
  color: #8b949e;
}
