/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

#homepageBody {
 background-image:"images/container.png";
}

#wriiglredHeader {
 display: block;
 margin: auto;
 width: 50%;
}
------------------------------Articles-----------------------------------
#article {
  margin-left: 300px;
  margin-right: 300px;
  background-color: darkSeaGreen;
  /*sizing for the content itself aka article writing*/
}

#articleBody {
  background-color: white;
  color: black;
  font-family: Verdana;
  /*Body element for article pages*/
}

#articleTagline {
  text-align: left;
}

#leftpanel {
    width: 100px;
    float: left;
    height: 500px;
    /*panel to go on the left hand side, next to the main content*/
}

.centeredText {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 20px;
}

#rightpanel {
    width: 100px;
    float: right;
    height: 500px;
    background-position: center;
    background-size: 100px;
    /*panel to go on the right hand side, next to the main content*/
}

#leftArticle {
  float: left;
  width: 500px;
  text-align: justify;
  background-color: transparent;
  /*lhs lot of content for the article pages*/
}

#rightArticle {
  float: right;
  width: 500px;
  text-align: justify;
  background-color: transparent;
  /*rhs lot of content for the article pages*/
  }
  
#container {
  text-align:center;
  background-image:"container.png"
}

#articleHeader {
  text-align:center;
  margin-left:200px;
  margin-right:200px;
  /*headline positioning for the article pages*/
}

#leftSpeechBubble {
 position:fixed;
 bottom:30;
}

