body {
  background-color: #0d1117; /* A slightly softer, modern dark gray instead of harsh pure black */
  color: white;
  margin: 0;
  font-family: "Inter", sans-serif; /* Clean font for the main text */
}

.container {
  display: flex;
  flex-direction: column; /* This stacks your heading and subtitle vertically */
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.main-title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-family: "Fira Code", monospace; /* The developer code font */
  color: #00ff41; /* A classic terminal green accent color */
  font-size: 1.2rem;
}

/* --- THE BLINKING CURSOR --- */
.cursor {
  display: inline-block;
  width: 4px;
  height: 1em;
  background-color: white;
  margin-left: 5px;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
