body {
  background-color: #0b0b0b;
  color: #d4d4d4;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

main {
  background-color: #0f3d0f;
  border: 1px solid #084201;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  max-width: 50%;
  margin: 80px auto;
  padding: 25px;
  text-align: left;
}

h2 {
  color: #3ae63a;
  border-bottom: 1px solid #1f5f1f;
  padding-bottom: 5px;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #0f3d0f;
  color: #d4d4d4;
  border-bottom: 1px solid #084201;
  padding: 15px 0;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center; /* keeps the center element truly centered */
}

/* left section pinned to the left side */
header .left {
  position: absolute;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* center title stays perfectly centered */
header .center {
  text-align: center;
  font-size: 2rem;
  color: #d4d4d4;
}

/* style for links and site name */
header h1 {
  margin: 0;
  color: #a8e6a8;
  font-size: 1.5rem;
}

header a {
  color: #a8e6a8;
  text-decoration: none;
  font-size: 1rem;
}

header a:hover {
  text-decoration: underline;
}
header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #a8e6a8;
}
a {
  color: #a8e6a8;
  text-decoration: none;

}
a:hover {
  text-decoration: underline;
}
ul {
  list-style-type: disc;
  padding-left: 20px;
}
li {
  margin-bottom: 10px;
}