:root {
    font-size: 16px;
    font-family: 'Fauna-One';

  --light-grey-trans: 160deg, rgb(105, 116, 105), rgb(55, 66, 55);
  --light-grey-trans: 160deg, rgba(105, 136, 105, 0.75), rgba(55, 66, 66, 0.80);

  --dark-grey-trans: 160deg, rgb(65, 76, 65, rgb(15, 26, 15));
  --dark-grey-trans: 160deg, rgba(13, 53, 0, 0.75), rgba(0, 10, 8, 0.80);

  --dark-grey: rgb(35, 46, 35);
  --dark-grey: rgba(6, 26, 0, 0.95);

  --darkest-grey-trans: 160deg, rgb(6, 26, 0), rgb(0, 20, 16);
  --darkest-grey-trans: 160deg, rgba(6, 26, 0, 0.75), rgba(0, 10, 8, 0.80);

  --black: rgb(0, 0, 0);
  --black: rgba(0, 0, 0, 0.50);
}

#topButt {
  display: none;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 3rem;
  right: 15px;
  z-index: 99;
  border: solid 2px var(--light-green);
  outline: none;
  background: white;
  color: white;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  font-size: 1rem;
  filter: opacity(0.7) grayscale(100%);
  transition: 300ms;
}
#topButt:hover {
  filter: opacity(1) grayscale(0);
}
#topButt svg{
  fill: var(--green);
}
  
body {
  color: white;
  background: url(../assets/bg.png) repeat center/15%, linear-gradient(#C2CF9E 10%, #426F34 20%, #002820 90%); 
  /*background: url(assets/rocks.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;*/
  background-attachment: fixed;
  margin: 0;
  padding: 0;
}

#header {
  margin: 0 10%;
  font-family: Cinzel;
  }

@keyframes titleGoof {
  0% {transform: rotateY(0);}
  15% {transform: rotateY(0);}
  20% {transform: rotateZ(60deg);}
  35% {transform: rotateY(180deg);}
  50% {transform: rotateZ(180deg); text-decoration:none;}
  55% {transform: rotateZ(180deg); text-decoration:underline;}
  60% {transform: rotateZ(180deg); text-decoration:underline; letter-spacing:2px;}
  80% {transform: rotateZ(180deg); text-decoration:underline; letter-spacing:25px;}
 100% {transform: rotateY(360deg); text-decoration:underline; letter-spacing:15px;}
}

.titleGoof {
 animation: titleGoof 60s ease-in;
 animation-fill-mode: forwards;
}
#title > span {
  transition: 15s;
}

#container {
  position: relative;
  min-height: 100vh;
  margin: 0 0 0 5rem;
  overflow: hidden;
  padding-top: 4rem;
}

.grouping {
 background: rgba(0, 0, 0, 0.25);
 position: relative;
 margin: 0 10% 5rem 10%;
 padding-top: 1rem;
 border: double 3px var(--light-green);
 border-radius: 5px;
}
.grouping > hr {
  border: solid 1px var(--light-green);
}

#intro, .sectionTitle {
  margin: 0 2rem 2rem 2rem;
}
#intro > h2, .sectionTitle > h2 {
  font-family: Cinzel;

}
#intro > p, .sectionTitle > p {
  text-indent: 1.2rem;
  margin: 0.2rem;
}

.wrapperTitle {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 3fr;
  grid-gap: 1em;
  align-content: space-around;
  margin: 0 2%;
  padding-bottom: 1rem;
}
.wrapperTitle > div {
  background: linear-gradient(var(--light-grey-trans));
  padding: 1em;
  border: solid 2px var(--light-green);
  border-radius: 5px;
  box-shadow: 3px 5px 5px var(--black), 
    10px 15px 15px var(--black);
  transition: 200ms;
  flex: 1 1 500px;
}
.wrapperTitle > div:hover {
  filter: brightness(125%) opacity(0.90);
}

#news > h4 {
  font-family: Cinzel;
  font-size: 0.75rem;
  margin: 0 0 0.5rem 0;
  text-decoration: underline;
}
#news > p {
  text-indent: 1.2rem;
  margin: 0.2rem;
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 3fr;
  grid-gap: 1em;
  align-content: space-around;
  margin: 0 2%;
  padding-bottom: 2.3rem;
}
.wrapper > div {
  background: linear-gradient(var(--light-grey-trans));
  padding: 1em;
  border: solid 2px var(--light-green);
  border-radius: 5px;
  box-shadow: 3px 5px 5px var(--black), 
    10px 15px 15px var(--black);
  transition: 200ms;
  flex: 1 1 200px;
}
.wrapper > div:nth-child(odd) {
  background: linear-gradient(var(--dark-grey-trans));
}
.wrapper > div:hover {
  filter: brightness(125%) opacity(0.90);
}

.content {
  position: relative;
}
.content > h4 {
  font-family: Cinzel;
  font-size: 0.75rem;
  margin: 0 0 0.5rem 0;
  text-decoration: underline;
  display:inline;
  float: right;
}
.content > h3 {
  font-family: Cinzel;
  font-size: 0.90rem;
  margin: 0.25rem 0;
  font-weight: bold;
  display: inline-block;
}
.content > p {
  text-indent: 1.2rem;
  margin: 0.2rem;
  padding-bottom: 0.5rem;
}
.content > hr {
  border: solid 1px var(--light-green);
}
.continueReading {
  color: white;
  transition: 200ms;
  position: absolute;
  bottom: 0.25rem;
  right: 0.25rem;
  margin: 0.25rem;
}
.continueReading:hover {
  color: var(--green);
}

#footer {
  position: absolute;
  font-weight: bold;
  text-transform: uppercase;
  bottom: 0;
  width: 100%;
  height: 2.5rem;
  display: grid;
  grid-template-columns: 125px 60px 60px;
  border-top: solid 2px var(--light-green);
  justify-content: center;
  font-size: 0.75em;
  background: linear-gradient(var(--darkest-grey-trans));
}
#footer > div {
  text-align: center;
  padding: 13px 0;
  filter: grayscale(100%) opacity(0.7);
  transition: 500ms;
}
#footer div:hover {
  color: var(--green);
  filter: grayscale(0%) opacity(1);
  background: linear-gradient(var(--white-trans));
}
#footer div:hover > span {
  color: var(--green);
}
#footer span {
  color:white;
  text-decoration: none;
}

/* small screen */
@media only screen and (max-width: 600px) {
  .grouping {
    margin: 5% 2% 5rem 2%;
  }
  .wrapperTitle {
    margin: 0 2%;
  }
  .wrapper {
    margin: 0 2%;
  }
  #container {
    margin: 5rem 0 0 0;
  }
}

/* large screen */
@media only screen and (min-width: 600px) {

}