* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #312946;
  color: white;
  text-align: center;
}

.header {
  padding: 20px;
}

.logo {
  width: 80%;         /* Adjusted width for better fit on small screens */
  max-width: 300px;   /* Maximum width for larger screens */
  height: auto;        /* Maintain aspect ratio */
  margin: 0 auto;      /* Center the logo */
}

main {
  margin: auto;
  width: 80%;
  max-width: 900px;
  padding: 20px;
}

nav {
  background-color: #4a3c5a; /* Adjust color as needed */
  padding: 10px 0;
}

.nav-links {
  display: flex;
  justify-content: center; /* Center the nav items */
  align-items: center;
}

.nav-links a {
  color: white; /* Set link color to white */
  text-decoration: none;
  margin: 0 10px; /* Space between links */
}

.nav-links a:hover {
  text-decoration: underline;
}


section {
  margin: 20px 0;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  text-align: left; /* Align text to the left */
  width: 100%; /* Ensure section takes full width */
}

h2 {
  color: #bdb0d6;
}

ul {
  list-style-type: disc; /* Use disc for bullet points */
  padding-left: 20px;    /* Add padding for indentation */
  text-align: left;       /* Align text to the left */
  margin: 0;              /* Remove default margin */
  display: block;         /* Ensure block display */
}


a {
  color: #bdb0d6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 20px;
  padding: 10px 0;
  font-size: 0.9em;
}
