/* NOTE: coded by M. Rajcevich for BSGR 2019 */
/* NOTE: the asterick and margin padding is to get rid of browser padding and is required and border-boxing required for flexbox use*/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* NOTE: Style of body */
body {
  background-image: url(images2/backplaid.jpg);
    }
/* NOTE: most used styling for the paragraphs */
    p {
      font-family: Georgia, serif;
      font-size: 18px;
      letter-spacing: 0.6px;
      word-spacing: -0.8px;
      color: #565656;
      font-weight: 400;
      line-height: 130%;
      padding-top: 10px;
    }

    h1 {
      font-family: arial;
      text-transform: uppercase;
      text-align: left;
      color: #565656;
      font-size: 24px;
      font-weight: 600;
      padding-bottom: 10px;
      padding-top: 10px;
    }
/* NOTE: most used styling for header tags */
    h2 {
      font-family: arial;
      text-transform: uppercase;
      text-align: left;
      color: #565656;
      font-size: 20px;
      font-weight: 600;
      padding-bottom: 10px;
      padding-top: 10px;
    }
    h3 {
      font-family: arial;
      text-transform: uppercase;
      text-align: center;
      color: #565656;
      font-size: 16px;
      font-weight: 600;
      padding-bottom: 10px;
      padding-top: 10px;
    }
    h4 {
      font-family: arial;
      text-transform: uppercase;
      text-align: center;
      color: #565656;
      font-size: 14px;
      font-weight: 600;
      padding-bottom: 10px;
    }

h5 {
  font-family: arial;
  text-transform: uppercase;
  color: #565656;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px;

}

h6 {
  font-family: arial;
  text-align: center;
  color: #565656;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 10px;
  padding-top: 10px;
}
    a {
      font-family: arial;
      text-transform: uppercase;
      color: #76323f;
      font-weight: bold;
      font-size: 14px;
    }

/* NOTE: Below is the wrapper for the whole page- the white part */
    .wrapper {
      margin: auto;
      height: auto;
      width: 1000px;
      background-color: #f2f2f2;
      box-shadow: 0 0 2px rgba(0,0,0,0.30);
    }
/* NOTE: wrapper adjustment for media- may need adjustment- may not need at valuable */
    @media screen and (max-width: 700px) {
      .wrapper {
    width:500px;
      }
    }
/* NOTE: where logo resides */
header {
  background-color: #f2f2f2;
  width: 100%;
  Height: 150px;
  box-shadow: inset 2px 1px 10px 2px rgba(0,0,0,0.30);
}
/* NOTE: below is the header image */
.headerlogo img {
width: 550px;
display: block;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}
/* NOTE: below is media resize for header logo */
@media screen and (max-width: 700px) {
  .headerlogo img {
width:400px;
  }
}
/* NOTE: this is the red ..to collect bar */
.bar {
  width: 100%;
  height: 40px;
  line-height: 32px;
  text-align: center;
  background-color: #76323f;
  border-top: 4px solid #c09f80;
  border-bottom: 5px solid #c09f80;}

  /* NOTE: below is the font styling for the bar */
.bar p {
  font-family: arial;
  color: #f9f9f9;
  font-size: 16px;
  padding-top: 5px;

}
/* NOTE: media resize for ...collect bar */

@media screen and (max-width: 700px) {
  .bar p {
font-size: 12px;
  }
}
/* NOTE: style of nav bar with flexibility */
.nav {
  display: flex;
  background-color: #b5ada8;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}

/* NOTE: style of nav links */
.nav a {
  font-family: arial;
  font-weight: 500;
  float: left;
  display: block;
  color: #f9f9f9;
  text-align: center;
  padding: 8px 15px;
  text-decoration: none;
  text-transform: uppercase;
  border-right: 1px solid #d7cec7;
}
/* NOTE: This makes the home and member's only red and changes the padding to make the width right. */
.nav a.active {
  background-color: #76323f;
  padding: 8px 18.7px;
  border-right: 0px;
}

/* NOTE: change color on hover */
.nav a:hover {
  background-color: #d7cec7;
  color: black;
}

/* NOTE: row is the column container */
.row {
  display: flex;
  flex-wrap: wrap;
}

/* NOTE: create two unequal columns that sit next to each other
/* NOTE: main is the left column */
.main {
  flex: 70%;
  background-color: #ffffff;
  padding: 10px 20px;
}

.main img {
  float: left;
}
.main ol li {
  font-family: Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.6px;
  word-spacing: -0.8px;
  color: #565656;
  font-weight: 400;
  line-height: 130%;
  padding-top: 10px;
  margin-left: 30px;
}
.main ul li {
  margin-left: 30px;
  padding-bottom: 5px;
  font-family: Georgia, serif;
  font-size: 16px;
  color: #565656
}

/* NOTE: side is the right sidebar */
.side {
  flex: 30%;
  background-color: #e7e7e7;
  padding: 20px;
  text-align: center;
}

.side p {
  text-align: justify;
  padding-top: 0px;
  font-size: 16px;
}

.side ul li {
  text-align: left;
  margin-left: 25px;
  font-size: 18px;
}
.side ul li a {
  padding-left: 0px;
  padding-right: 5px;
}

.side a {

  font-size: 12px;

}
.side h2 {
  padding-left: 10px;
}
.side h3 {

  padding-top: 10px;

}


/* NOTE: start of footer section in two columns */
.footer {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
  vertical-align: middle;
  background-image: url("images2/oldmap2.jpg");
  border-top: 20px solid black;
  border-bottom: 10px solid black;
  padding: 15px;
}
.footer-left {
  flex: 50%;
  }

.footer-left p {
  color: #e7e7e7;
  font-size: 12px;
  font-family: arial;
  font-weight: normal;
  font-variant: small-caps;
    }

.footer-left a {
  color: white;
  }

.footer-right {
  flex: 50%;
}

.footer-right p {
  color: #e7e7e7;
  font-size: 12px;
  font-family: arial;
  font-weight: normal;
  font-variant: small-caps;

      }
.footer-right h2 {
  color: #e7e7e7;
  text-align: center;
  }

.main .feature {
  margin-top: 10px;
  padding: 20px 50px;
  border: 3px solid #c09f80;
  border-radius: 10px;
}

/* NOTE: from here are special items for various pages- that's the plan anyway */


/* NOTE: Button design below use- <div class="myButton">change text here</div> in html to deploy*/
.myButton {
  color: #76323f;
  font-size: 20px;
  line-height: 20px;
  padding: 10px;
  border-radius: 5px;
  font-family: Arial;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #f9f9f9;
  border: 3px solid #c09f80;
  text-align: center;
  display: inline-block;
    }
.myButton:hover {
  background: #d7cec7; }
.myButton:active {
  background: #c09f80; }



  /* NOTE: NEEDED: Styles the first letter larger- May also need to set line-height <p><span class="first-letter">W</span>elcome*/
  .first-letter {
    font-size: 35px;
    font-weight: bold;
      }

  .table01 {
    font-family: arial;
    margin-top: 15px;
    background-color: #e7e7e7;
    padding: 10px;

  }

/* NOTE: Responsive layout - NEEDED!! when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */

@media screen and (max-width: 764px) {
  .row, .nav {
    flex-direction: column;
  }
}
 /* NOTE: the card class is used on the articles page */
.card {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
}

.card img {
  width: 150px;
  padding-right: 10px;
}
