/* Footer Section */


.footer{
  margin: 0;
  padding:0;


  font-family: 'Merriweather',cursive;

  text-align: center;
  font-size: 100%;


}
.footer_wrapper{
  background-color:#444444;
  padding:3.5vh 0 3.5vh 0;
  bottom:0;
  color: white;
  width:100%;
  min-height: 5vh;
  /*display flex allows me to justify the content. cant do it without a flex container */
  display:flex;
  justify-content: center;
  text-align: center;

}
