/* 
Project Name: Temporary Site
Client: Me
Author: Georgia Perris
*/

/******************************************
/* SETUP                   
/*******************************************/

/* Box Model Hack */
* {
     -moz-box-sizing: border-box; /* Firexfox */
     -webkit-box-sizing: border-box; /* Safari/Chrome/iOS/Android */
     box-sizing: border-box; /* IE */
}

/* Clear fix hack */
.clearfix:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
}

.clear {
	clear: both;
}

.alignright {
	float: right; 
	padding: 0 0 10px 10px; /* note the padding around a right floated image */
}

.alignleft {
	float: left; 
	padding: 0 10px 10px 0; /* note the padding around a left floated image */
}

/******************************************
/* BASE STYLES                   
/*******************************************/

body {
     color:#565656;
     font-size: 14px;
     font-style: normal;
     line-height: 1.2;
     font-family: Helvetica, Arial, sans-serif;
     background: url('../images/georgia.jpeg');
     
}

a{
     color:gray;
     text-decoration: none;
}

a:hover{
     text-decoration: underline;
     }

/******************************************
/* LAYOUT                   
/*******************************************/

/* Center the container */
#container {
	width: 700px;
	margin: auto;
     background: rgba(255, 255, 255, .85);
     padding: 15px;
     
}

header {
color:#565656;

}

footer {

}

/******************************************
/* ADDITIONAL STYLES                   
/*******************************************/




