body {
  background: #000000 url("/photos/largescalefinal.png"); 
	background-size: cover;
	background-attachment: fixed;
  background-position:center; 
	font-color: #ffffff;
	font-family: garamond;
	font-size:13px;
  }
  
a {
  color: #ffffff;
  }

  
/*Everything goes inside this.*/
.container {
  margin: 0 auto;
  width:800px;
  margin-top:5px;
  margin-bottom:5px;
  }
  
/*Main boxes.*/
.main {
  background: #000000;
  border:3px;
  margin-left:180px;
  width:350px;
  line-height: 12px;
  padding: 12px 12px;
  margin-bottom:12px;
  margin-top:12px;
  }

/*Sidebar*/
.side {
  background: #000000;
  padding:5px 12px;
  border color: 0px #009BA0;
  margin-top:20px;
  max-height:2000px;
  overflow: auto;
  width:130px;
  position:fixed;
  text-align:center;
  }
  
.side img {
  border: 0px double black;
  margin: 0 auto;
  margin-left: 0px; /*border pushes it to the right otherwise*/
  }

/*Prevent image overflow*/  
.main img, .side img {
  max-width: 100%;
  height: auto;
  }
  
  
/*For narrower screens.*/
@media(max-width:850px) {
  .container {
    width:700px;
  }
  .main {
    margin-left:175px;
    }
  .side {
    width:100px;}
  }