* {
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Nunito", sans-serif;
  background-color: #6fa18c;
  color: #fef7eb;
}
.logo-nav img {
  height: 80px;
  justify-content: flex-start;
}

header {
  position: fixed;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 80px;
  display: flex;
  background-color: #6fa18c;
  color: #fef7eb;
  justify-content: space-around;
  padding-bottom: 10px;
}

header h1 {
  text-align: center;
  height: 100%;
  display: inline;
}

/************************* MAIN PAGES NAV */
.navigation li {
  list-style: none;
  text-align: center;
  text-decoration: none;
}
.navigation ul {
  display: flex;
  flex-direction: row;
  height: 100%;
  justify-content: space-evenly;
  text-decoration: none;
  padding: 10px 24px;
  line-height: 80px;
}

.navigation a {
  text-align: center;
  text-decoration: none;
  line-height: 80px;
  color: #fef7eb;

  justify-content: space-evenly;
  padding: 10px 24px;
}

.navigation a:hover {
  text-align: center;
  text-decoration: none;
  line-height: 80px;
  color: #f9bc60;

  justify-content: space-evenly;
  padding: 10px 24px;
}

.navigation a.active {
  text-align: center;
  text-decoration: none;
  line-height: 80px;
  color: #f9bc60;

  border: solid;
  border-color: #fef7eb;

  justify-content: space-evenly;
  padding: 10px 24px;
}

/********************** DONATE BUTTON NAV */

#donate {
  border: solid;
  border-color: #f9bc60;
  border-radius: 50px;
  color: #fef7eb;
}
#donate:hover {
  background-color: #f9bc60;
  opacity: 1;
}
/********************** content */
section {
  width: 1154px;
  padding-left: 150px;
  padding-right: 100px;
}

h2 {
  font-size: 2rem;
}
.content {
  display: flex;
  justify-content: space-around;
  margin: 100px 100px 10px 100px;
  width: 1154px;
}

.about {
  height: 431px;
  width: 640px;
  margin: 10px;
  padding: 5px;
}
.about p {
  line-height: 2;
  justify-content: center;
}

/********************** footer*/
footer {
  background-color: #004643;
  color: #fef7eb;
  height: 20%;
  bottom: 0;
  padding: 0;
}
footer .footer-items {
  line-height: 84px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  text-align: center;
  bottom: 0;
  padding: 0;
}

footer .footer-items .fa-brands fa-instagram fa-xl {
  font-size: 1.5em;
  text-align: center;
  line-height: 100%;
  background-color: #f9bc60;
  line-height: 84px;
  text-align: center;
}
footer a {
  color: #fef7eb;
}

@media (max-width: 800px) {
  .content {
    flex-direction: column;
  }
}
