/*resets*/
* {
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Nunito", sans-serif;
  background-color: #6fa18c;
}
.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 {
  height: 100%;
  width: auto;
  margin-top: 10px;
}
.hero-image {
  background-image: url(images/wieger-stienstra-SDWbEi94QG0-unsplash.jpg);
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-top: 80px;
}

.content {
  display: flex;
  height: 100%;
  justify-content: space-between;
  column-gap: 4rem;
  text-align: center;
  margin: 20px 160px 20px 160px;
  width: 1154px;
  color: #fef7eb;
}
h2 {
  height: 100px;
  margin-top: 100px;
  justify-content: center;
  padding-top: 10px;
  text-align: center;
  top: 20%;
  width: 100%;
  font-size: 4rem;
  color: #fef7eb;
  text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000,
    -1px 1px 0 #000, 1px 1px 0 #000;
}

.circle {
  background-color: #25815a;
  border-radius: 50%;
  width: 300px;
  height: 300px;
}

.circle a {
  color: #fef7eb;
  text-decoration: none;
}
.circle :hover {
  background-color: #f9bc60;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  color: #fef7eb;
}
.circle h3 {
  line-height: 300px;
  text-align: center;
  font-size: 80px;
  cursor: pointer;
}
.circle p {
  padding-top: 50px;
  width: 300px;
  height: 80px;
  text-align: center;
}

.circle p:hover {
  background-color: transparent;
}
/********************** 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;
  }
}
