body {
	/*background-color: #ece0b6;*/
	background-color: #34544d;
}

h1 {
	/*color: #4b423c;*/
	color: #c9a980;
	font-family: sans-serif;
	margin-top: 35px;
	text-align: center;
}

h2 {
	/*color: #4b423c;*/
	color: #c9a980;
	font-family: sans-serif;
	margin-top: 15px;
	text-align: center;
}

/*Button links for the different blogs*/
h2.button {
	/*old bg color and current border are swapped from original
	/*background-color: #4b423c;*/
	background-color: #34544d;
	width: auto;
	margin: auto;
	margin-top: 70px;
	text-align: center;
	border: solid 2px #c9a980;
}

p {
	color: #c9a980;
	font-family: cambria;
}

/*Caption for pic of the week*/
p.caption {
	text-align: center;
	color: #c9a980;
	font-family: cambria;
	font-size: 18px;
	font-weight: bold;
}

img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 35px;
	width: 100%;
}

ul.nav {
	list-style-type: none;
	margin: 0;
	padding: 1px;
	float: right;
}

li.nav {
	display: inline;
	padding: 5px;
}

a {
	font-family: cambria;
	font-size: 18pt;
	color: #aab9a7;
}

a:visited {
	color: #98745d;
}

a:hover {
	color: #ece0b6;
	cursor: pointer;
}

a:active {
	color: #66b44f;
}

/*Box config for Pic of the week and blog on index.html
I'd personally like to thank w3schools for this one, gift from the gods*/
* {
	box-sizing:content-box;
  }
  
  .box {
	float:left;
	width: 20%;
	height: 600px;
	margin-left: 25%;
	margin-right: 5%;
	margin-top: 35px;
  }

  .boxReverse {
	float: left;
	width: 20%;
	height: 600px;
	margin-left: 5%;
	margin-right: 20%;
	margin-top: 0px;
  }
  
  .clearfix::after {
	content: "";
	clear: both;
	display: table;
  }

  @media screen and (max-width: 600px) {
	.box {
		width: 100%;
		margin: auto;
		height: 500px;
	}

	.boxReverse {
		width: 100%;
		margin: auto;
		height: 500px;
	}
  }
