@font-face {
  font-family: 'OCRASTD';
  src: url('OCRASTD.otf') format('opentype');
}

body {
  background-color: #000; /* futuristic black bg */
  color: #39ff14; /* neon green */
  font-family: 'OCRASTD', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 20px;
}

.terminal {
  width: 80%;
  max-width: 900px;
  white-space: pre-wrap; /* wrap text nicely */
  font-size: 20px;
  line-height: 1.6em;
}

.cursor {
  display: inline-block;
  width: 10px;
  background-color: #39ff14;
  margin-left: 5px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}
