/* 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: #F8D28B;
  background-image: url("/images/bgantialias.png");
  background-position: center top;
  background-repeat: repeat-x;
  color: black;
  font-family: Verdana;
}

.box {
  background-color: #EDAC61;
  max-width: 600px;
  margin: auto;
  padding: 20px 100px 30px 100px;
  outline: 3px solid #B86637;
  outline-offset: -20px;
}

.buffer {
  min-height:30px;
}

.summary {
 font-size: 12px; 
}

.directory {
  line-height: 60px;
}



/* MOBILE FORMAT */
@media (max-width:630px) {
 
 .box {
  padding: 30px 20px 30px 20px;
 }
 
img {
  width: auto;
}
}