body {
  background-color: rgb(0, 0, 0, 0.7);
  font-family: Arial, Helvetica, sans-serif;
}
header {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  background-color: rgb(121, 160, 91);
  color: white;
  margin: -20;
  padding: 20px;
}
.headerlinks {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style-type: none;
  justify-content: space-between;
}
@media (max-width: 916px) {
  .headerlinks {
    flex-direction: column;
  }
}
li a {
  text-decoration: none;
  color: white;
}
#content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 916px) {
  #content {
    flex-direction: column;
  }
}
#content section {
}
.sublinks {
  width: 30%;
  margin-left: 60%;
}
.btn {
  background: linear-gradient(to bottom, black, gray);
  padding: 10px 20px;
  border: 2px solid black;
}
li h1 {
  text-decoration: underline;
}
.sectiontitles h2 {
  list-style-type: square;
  color: rgb(121, 160, 91);
  text-decoration: underline;
}

li p {
  color: black;
}
img {
  border: 3px solid rgb(121, 160, 91);
}

#content {
  width: 80%;
  margin: 0 auto;
}
