html, body {
      margin: 0;
      padding: 0;
      background-color: #0b0b0b;
      color: #e0e0e0;
      font-family: 'Courier New', monospace;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      text-align: center;
    }
h1 {
      font-size: 2.8em;
      color: #ff5050;
    }
p {
      font-size: 1.2em;
      color: #aaaaaa;
      margin: 0.4em 0;
    }
.quote {
      font-style: italic;
      margin-top: 1.5em;
      color: #cfcfcf;
    }
.footer {
      margin-top: 2em;
      font-size: 0.9em;
      color: #777;
    }
