body {
  background-color: rgb(70, 94, 67);
  background-image: url(../nature-recordings-resources/backgroundimage.png);
  background-size: cover;
}

#container {
  background-color: rgb(55, 75, 58);
  max-width: 900px;
  margin: 0 auto;
}

#header {
  width: 100%;
  background-image: url(../nature-recordings-resources/headerimage.png);
  background-size: cover;

}

#navbar {
  height: 40px;
  width: 100%;
}

#navbar ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  justify-content: space-evenly;
}

#navbar li {
  padding-top: 10px;
}

#navbar li a {
  color:rgb(145, 179, 152);
  font-weight: 800;
  text-decoration: none;
}

#navbar li a:hover {
  color:rgb(129, 220, 129);
  text-decoration: underline;
}

#mainChunk {
  text-align: center;
  background-color: rgb(75, 100, 72);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 450px;
  padding-top: 40px;
}

figure img {
  max-width: 100%;
  height: auto;
}

figcaption {
  text-align: center;
  color: rgb(177, 221, 178);

}

audio {
  width: 100%;
}

strong {
  color: rgb(177, 221, 178)
}

h1 {
  color: rgb(114, 242, 116);
}