*,
*::before,
*::after{
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Verdana, sans-serif;
  padding: 0;
  margin: 0;
}

:root{
  --color-bg: #666666;
  --color-bg-alt: #afafaf;
  --color-bg-alt-2: #999999;
  --color-primary: #dfdfdf;
  --color-secondary: #242424;
  --color-btn: #121212;
  --color-btn-active: #666666;
}

html{
  font-size: 62.5%;
}
body{
  font-size: 1.6rem;
  letter-spacing: 0.2px;
  background-color: var(--color-bg);
  color: var(--color-primary);

  text-align: center;
}
a{
  text-decoration: none;
  color: inherit;
}
ul{
  list-style: none;
}

/*NAVBAR***************************/
.navBar{
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 15px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
/*  border: 2px solid white;*/
}

.navMenu{
  width: 3rem;
  display: none;
  filter: invert(100%);
}

.navFlex{
  display: flex;
}
.navFlex a{
  padding: 10px 20px;
  white-space: nowrap;
  border-radius: 5px;
}
.navFlex a:active{
  background: var(--color-bg-alt);
}
.logoLG{
  width: 3.5rem;
}
.navButton{
  background: var(--color-btn);
  padding: 10px 20px;
  border-radius: 5px;
}
.navButton:active{
  background: var(--color-btn-active);
  color: #999999;
}
/*MAIN****************************/
.why, .options, .volunteer{
/*  border: 2px solid white;*/
  padding: 100px 20px;
}
main{
  background: var(--color-bg);
  padding: 100px 20px 0 20px;
}
main h1{
  font-size: 4.2rem;
}
main h1, main p, main a{
  margin-bottom: 35px;
}
.width1000{
  max-width: 1000px;
  margin: auto;
}
/*.youtubeLink{
  border: 2px solid white;
}*/
.youtubeLink svg{
  width: 4rem;
  margin: -15px 5px;
  filter: invert(90%);
}
.mainLittleTxt{
  font-style: italic;
  color: #222222;
  padding: 60px 0 40px 0;
}
/*WHY****************************/
.why{
  background: var(--color-bg-alt);
  color: #222222;
}
.why h2{
  font-size: 3rem;
}
.why *{
  margin-bottom: 25px;
}
.width500{
  max-width: 500px;
  margin: auto;
}
/*OPTIONS*************************/
.options{
  background: var(--color-bg-alt-2);
  color: #222222;
}
.options div{
  display: flex;
  gap: 20px;
}
.placeholderImg{
  height: 250px;
  width: 400px;
  margin: auto;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
  background: var(--color-secondary);
}
.options *{
  margin-bottom: 25px;
}
.optionBtn{
  color: inherit;
  background: inherit;
  border: 2px solid var(--color-primary);
  padding: 10px 20px;

}
.optionBtn:active{
  background: var(--color-btn-active);
  border: 2px solid var(--color-secondary);
  color: var(--color-primary);
}
/*VOLUNTEER***********************/
.volunteer{
  background: var(--color-bg-alt);
  color: #222222;
}
.volunteer *{
  margin-bottom: 25px;
}

/*FOOTER**************************/
footer{
  text-align: left;
  padding: 20px 30px;
  font-size: 1.5rem;
}
.ftFlex{
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.ftFlex section + section{
  width: 200px;
}
.ftFlex section + section *{
  margin-bottom: 20px;
}

.media-icons, .ft-links{
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.media-icons svg{
  width: 3rem;
  filter: invert(100%);
}

.ft-bottom{
  display: flex;
  padding: 5px 0;
  border-top: 2px solid white;
}

/*MEDIA***************************/
@media all and (max-width: 550px) {
  .hideC{
    display: none;
  }
  .navMenu{
    display: block;
  }
  .why, .options, .volunteer{
    padding: 100px 10px;
  }
  main{
    padding: 100px 10px 0 10px;
  }
  footer{
    padding: 20px 10px;
  }
}
@media all and (max-width: 850px) {
  .options div{
    display: block;
  }
  .options div section:first-of-type{
    padding-bottom: 60px;
  }
}
