body {
  font-family: 'Josefin Sans', sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, nav {
  font-family: 'Lexend Giga', sans-serif;
  color: #007939; /* Primary color */
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
}

/* Add this to base.css or a new CSS file */
.about-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #1f1f1f;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-page h1 {
  font-size: 2.5rem;
  color: #3fa43a; /* Primary color */
  text-align: center;
  margin-bottom: 1rem;
}

.about-page p {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-page h2 {
  font-size: 1.8rem;
  color: #03a9f4; /* Light blue */
  margin-bottom: 1rem;
}

.about-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-links li {
  margin-bottom: 0.5rem;
}

.about-link {
  color: #f5deb3; /* Yellowish white */
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.about-link:hover {
  color: #a60067; /* Magenta */
  text-decoration: underline;
}