/* Basic reset and styling */
body {
  margin: 0;
  background-color: #000;  /* Black background */
  color: #fff;             /* White text */
  font-family: Arial, sans-serif;
  text-align: center;      /* Center everything */
  padding: 50px 20px;      /* Some spacing */
}

/* Logo styling */
.logo {
  max-width: 600px;       /* Adjust as needed */
  height: auto;
  display: block;
  margin: 0 auto;         /* Center logo horizontally */
}

/* Headings and paragraphs */
h1 {
  margin-top: 20px;
  font-weight: normal;
  font-size: 2em;
}

p {
  max-width: 600px;       /* Wrap text for better readability */
  margin: 20px auto;
  line-height: 1.6;
  font-size: 1em;
  overflow-wrap: break-word; /* Prevent overflow from very long words */
  word-wrap: break-word;     /* For older browser support */
}

/* Footer styling */
.footer {
  margin-top: 40px;
  font-size: 0.9em;
  color: #aaa;
}
