body {
    min-height: 100vh;     /* Fill 100% of the viewport height */
    display: flex;
    flex-direction: column;        /* Stacks elements in a column (h1, p, etc.) */
    align-items: center;           /* Horizontal center */
    justify-content: center;       /* Vertical center */
    background-color: black;
    color: white;
    font-size: 16px;               /* Base font size */
    font-family: 'Times New Roman', Times, serif;
  }

/* Heading styles */
h1 {
  font-size: 8rem;
  font-weight: 100;
  margin: 1rem 0;
}

/* Paragraph styles */
p {
  font-size: 3rem;
  margin: 0.5rem 0;
}
