/* Layout */
main {
  max-width: 1000px;     /* Limit the content width */
  margin: 0 auto;        /* Center the content horizontally */
  padding: 20px;         /* Space around the content */
  line-height: 1.6;      /* Improve readability */
  color: #000000;        /* General text color */
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Headings */
main h1 {
  width: 100%; 
  background: linear-gradient(45deg, #0a00c8fd, #04004d); /* Attractive gradient background */
  color: #ffffff;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

main h2 {
  width: 95%;
  background: linear-gradient(45deg, #0a00c8fd, #04004d);
  color: #ffffff;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Paragraphs */
main p {
  font-size: 1.0rem;
  margin-bottom: 15px;
  text-align:justify; text-justify:inter-word; line-height:1.6; text-align-last:left;
}

/* Ordered list */
.main-list {
  margin-bottom: 20px;
}

/* Links (if any are added later) */
.main-link {
  color: #0300a7;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-link:hover {
  color: #1c5980;
  text-decoration: underline;
}


/* Responsive adjustments */
@media (max-width: 599px) {
  main {
    padding: 10px;

  }
  main p {
    font-size: 0.90rem;
  }

  main h1, main h2 {
    font-size: 1rem;
  }
}