body {
  background-color: black;
  color: white;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Ensure full viewport height */
}

main {
  text-align: center;
  width: 90%; /* Adjusted for better spacing */
  max-width: 800px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  margin: 10px; /* Added for small screen scrolling */
}

h1, h2 {
  color: #f87a05;
}

p, ul, li {
  margin-bottom: 1em;
}

a {
  color: #f87a05;
  text-decoration: underline;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  main {
      width: 95%; /* Increase width on smaller screens */
      padding: 15px; /* Adjust padding for smaller screens */
  }

  body {
      text-align: justify; /* Improve readability on narrow screens */
  }
}
