/*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;
}

/********************** LANDING */
.landing {
  background-image: url("images/andrew-s-ouo1hbizWwo-unsplash.jpg");
  height: 100%;
  background-size: cover;
}

h2 {
  position: absolute;
  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;
}

/********************** CTA BUTTONS*/
#cta {
  display: flex;
  position: fixed;
  justify-content: space-around;

  bottom: 280px;
  width: 100%;
  height: 80px;
}
.landingBTN {
  background-color: #004643;
  opacity: 0.8;
  height: 80px;
  width: 30%;
  margin: 20px;
  border-radius: 50px;

  cursor: pointer;
  text-align: center;
  text-decoration: none;
  line-height: 80px;
  color: #fef7eb;
}

.landingBTN:hover {
  background-color: #f9bc60;
  opacity: 1;
}

#cta a {
  font-size: 2rem;
}
