@charset "UTF-8";
/* CSS Document */
/* THIS IS WHERE YOU CALL YOUR GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Limelight&display=swap');
/* -- DECLARING COLOUR & TEXT VARIABLES FOR USE THROUGHOUT THE CSS -- */
/* -- SEE https://www.w3schools.com/css/css3_variables.asp FOR EXPLANATION OF VARIABLES -- */
:root {
  --bgc: rgb(219, 226, 204);
  --textc: rgba(145, 170, 148);
  --textsm: rgba(115, 168, 62, 0.5);
  --titlesm: rgba(16, 46, 22);
  --bodyfont: "Fredoka", sans-serif;
  --leaderfont: "Fredoka", sans-serif;
  --titlefont:"Limelight", sans-serif;
  --smfont:"Fredoka", sans-serif;
}


body {
  margin: 0;
  font-family: var(--bodyfont);
  color: var(--textc);
  font-weight: 300;
  font-style: normal;
  font-size: 1rem;
  background-color: var(--bgc);
  
}

a img:hover {
  opacity: 0.60;
  rotate: 5deg;
}
/* -- HEADER -- */
.topnav {
  background-color: rgba(16, 46, 22) ;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .1);
  position: fixed;
  width: 100%;
  z-index: 3;
  /*font-size: 1.74rem;*/
  padding: 0 10px;
  
}

.back {
  font-family: var(--leaderfont);
  font-weight: 400;
    font-size: 1.5rem;
}

.vivian {
  color:  rgba(198, 214, 177);
}
.paragraph p{
  font-family: var(--bodyfont);
  font-weight: 400;
}
.topnav #title {
  max-width: 1400px;
  margin: 0 auto;
  font-family: var(--titlefont);
}
/*-- MULTI-COLUMN CONTAINER AND ITEMS --*/
.item-container {
  max-width: 1400px;
  margin: 0 auto;
  /* -- THIS NEXT LINE LETS THE BODY SITS BELOW THE HEADER -- */
  padding: 220px 20px 0;
  /* -- THIS NEXT LINE MAKES THE BODY FULL HEIGHT MINUS THE HEADER PADDING -- */
  height: calc(100vh - 160px);
}
.item {
  box-sizing: border-box;  
  padding: 20px;
  /*margin-bottom: 20px;*/
}
.small{
  font-family: var(--smfont);
  font-size: 1rem;
  font-weight: 400;
  color: var(--textsm); 
  margin-bottom: 20px;
}
.titlesmall{
  font-family: var(--smfont);
  font-weight: 400;
  font-size: 1rem;
  color: var(--titlesm); 
  margin-bottom: 10px;
}
hr {
  width: 100%;
  border-color:rgba(16, 46, 22) ;
  border-top:rgba(16, 46, 22) ;
  /* note - no colour added, but you can using "border-top" -- */
  /* border-top: 1px dotted red; */
}
.subtitle {
  font-family: var(--titlefont);
  font-weight: 700;
  font-size: 2.25rem;
}
.leader {
  font-family: var(--leaderfont);
  font-weight: 500;
    font-size: 1.5rem;
}

footer{
  color: rgba(145, 170, 148) ;
  background-color:rgba(16, 46, 22) ;
  padding: 1rem;
  text-align: center;
  font-size: small;
  position: fixed; 
  left: 0;
  bottom: 0;
  width: 100%;
  margin-top: 276px;
}

footer span.gwd{
  color: burlywood;
}
/* -- MEDIA QUERY -- */
/* 48em = 768px */
@media (min-width: 48em) {
  /*-- GRID STYLING FOR BODY CONTENT --*/
  .item-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 0px;

  }
}