/* Reset some defaults */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #121213;
  color: #d7dadc;
  line-height: 1.6;
}

/* Container for page content */
.container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: #1a1a1b;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Headings */
h1, h2 {
  color: #538d4e;
}

/* Links */
a {
  color: #538d4e;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  background: #1a1a1b;
  color: #777;
}
footer a {
  color: #d7dadc;
}
footer a:hover {
  color: #538d4e;
}
