body {
  font-family: "Georgia", serif;
  background: linear-gradient(to bottom, #e5f5e0, #a1d99b);
  margin: 0;
  padding: 0;
  color: #2e3d2f;
   
}



 header h1 {
  text-align: center;
  background-color: #008b03;
background-image: url("https://img.freepik.com/free-photo/spooky-forest-mystery-dark-tree-branch-fantasy-generative-ai_188544-12556.jpg?semt=ais_hybrid&w=740");
  color: white;
  margin: 0;
  padding: 150px 0;
  font-size: 32px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #002100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

nav button {
  background-color: #238b45;
  background-image: url("https://img.freepik.com/premium-photo/deep-forest-fantasy-backdrop-concept-art-realistic-illustration-video-game-digital-cg-artwork_742252-1286.jpg?w=1060");
  border: none;
  color: white;
  padding: 12px 20px;
  margin: 5px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 6px;
  transition: background-color 0.3s;
}

nav button:hover {
  background-color: #005f20;
}

section {
  display: none;
  padding: 20px;
  max-width: 900px;
  margin: auto;
  background-color: #f0fdf4;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

section.active {
  display: block;
}

img {
  display: block;
  margin: 20px auto;
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #d9f2d9;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  border: 1px solid #a1d99b;
  padding: 12px;
  text-align: center;
}

th {
  background-color: #41ab5d;
  color: white;
}

footer {
  background-color: #006d2c;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

(maxwidth: 600px) {
  nav {
    flex-direction: column;
  }

  nav button {
    width: 90%;
    font-size: 18px;
  }

  section {
    padding: 15px;
  }
  
  .header-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 5px solid #238b45;
  }

 
