body {
  margin: 0;
  padding: 2em;
  background-color: #000;
  color: #eee;
  font-family: 'Courier New', monospace;
  background-image: url('about_bg.jpg');
  background-size: cover;
  background-position: center;
}

.about-container {
  max-width: 700px;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.92); /* darker */
  padding: 2em;
  border-left: 4px solid crimson;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: crimson;
  font-size: 2em;
  margin-bottom: 1em;
  text-shadow: 0 0 6px black;
}

.intro {
  font-size: 1.2em;
  font-style: italic;
  margin-bottom: 1em;
  color: #ffcccc;
}

/* Typing animation for all paragraphs */
.about-container p {
  white-space: pre-line;
  overflow: hidden;
  border-right: 2px solid crimson;
  animation: typing 4s steps(40, end), blink-caret 0.75s step-end infinite;
}

.note {
  color: #aaa;
  font-style: italic;
  margin-top: 2em;
}

.signoff {
  text-align: right;
  font-weight: bold;
  margin-top: 2em;
  color: #ff4444;
  animation-delay: 3s;
}

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

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