/* Base page styling */
body {
  background-color: black;   /* black background */
  color: white;              /* white text */
  font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;        /* centers inline text and headings */
}

/* Header */
header {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

header h1 {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Navigation */
nav {
  margin: 1rem 0;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 0.5rem;
}

nav a:hover {
  text-decoration: underline;
}

/* Main content */
main {
  width: 60%;
  margin: 0 auto;
  text-align: center;   /* center aligns the text block */
}

p {
  line-height: 1.5;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: gray;
}