/* 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: #d9ead3;
  font-family: Verdana;
}
header {
  padding: 30px;
  text-align: center;
  font-size: 35px;
  font-family: Ariel;
  color: #274e13;
}

/* Create two columns/boxes that floats next to each other */
nav {
  padding: 20px;
  color: #274e13;
  border-style: dashed none dashed none;
  text-align:center;
}

main {
  width: 100%;
  text-align: center;
  float:center;
  height: 300px; /* only for demonstration, should be removed */
  color: #274e13;
  
}

a.navi{
  padding-left: 30px;
  padding-right: 30px;
}

div.talk-box{
  
  background-color:#6aa84f
}