html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #eae0d5;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


/* Navigation and Logo */
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo-text {
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  color: #0078d7;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
}

.nav-links li a:hover {
  color: #0078d7;
}

/* Main Content Box */
.content {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.content > main {
  background-color: #fff;
  max-width: 900px;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}


.content header {
  text-align: center;
  margin-bottom: 2rem;
}

.content header h1 {
  font-size: 2.5rem;
  font-family: 'Great Vibes', cursive;
  color: #0078d7;
  margin: 0;
}

main h1, main h2 {
  color: #0078d7;
  margin-bottom: 1rem;
}

main p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}


.revision-date {
  font-size: 1rem;
  font-style: italic;
  opacity: 0.8;
  margin-top: 0.5rem;
}

main section {
  margin-bottom: 2rem;
}

main h2 {
  font-size: 1.5rem;
  color: #0078d7;
  margin-bottom: 0.5rem;
}


/* Footer */
footer {
    display: flex;
    background: #333;
    justify-content: space-between; /* Align left, center, and right sections */
    align-items: center;
    color: #fff;
    text-align: center;
    background-color: #333; /* Adjust for visibility */
    width: 100%;
    position: relative;
    bottom: 0;
    margin-top: auto; /* Push footer to the bottom */
}

.footer-left, .footer-right {
    flex: 1; /* Make sure they stay aligned */
}

.footer-center {
    flex: 2; /* Center text in the middle */
}

.footer-link {
    color: #fff; /* Keep links visible on dark backgrounds */
    text-decoration: none; /* Remove default underline */
    font-size: 1rem;
    padding: 0 10px; /* Add spacing */
}


.footer-link:hover {
    text-decoration: underline; /* Add hover effect */
}
