/* General page styles */
body {
  background-color: black;     /* black background */
  color: white;                /* white text */
  font-family: Verdana, sans-serif;
  font-size: 20px;

  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;      /* stack content vertically */
  justify-content: center;     /* vertical center */
  align-items: center;         /* horizontal center */
  text-align: center;
  padding: 20px;               /* spacing from edges */
}

/* Logo at the top */
.logo {
  max-width: 250px;            /* adjust as needed */
  height: auto;
  margin-bottom: 30px;
}

/* Headings */
h1, h2, h3 {
  margin: 20px 0;
  color: white;
}

/* Paragraph spacing */
p {
  margin: 15px 0;
  line-height: 1.5;
}

/* Lists */
ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;            /* keep lists left-aligned inside centered page */
  max-width: 600px;
  margin: 10px 0;
  color: white;
}

/* Links */
a {
  color: #00aaff;              /* bright blue links for contrast */
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}
