/* CSS Document */

/*================================

Basic Structure

================================*/

#wrapper {
	width: 960px;
	padding: 5px;
	margin: 20px auto;
}
#header {
	height: 100px;
}
#sidebar {
	float: left;
	width: 300px;
}
#content {
	float: right;
	width: 600px;
}
#footer {
	clear: both;
}

/*================================

Colors and Fonts
color.adobe.com

#45BAFF
#3FD6E8
#52FFE2
#3FE89C
#45FF77

================================*/


body {
	
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #52FFE2;
	background-color: #3FE89C;
	background-image: url("../images/Galaxy_Background.jpg");
	
}

#header, #content, #sidebar, #footer {
	margin-bottom: 4px;
	border: double;
	border-radius: 8px;
	border-color: grey;
	padding-left: 4px;
	padding-right: 4px;
}

/*=====================

Responsive Design

====================*/
@media screen and (max-width: 980px) {
	#wrapper {
		width: 94%;	
	}
	#content {
		width: 65%;
	}
	#sidebar {
		width: 30%;
	}
}
@media screen and (max-width: 700px) {
	#content, #sidebar {
		width: auto;
		float: none;			
	}
	#header {
		height: auto;
	}
}
@media screen and (max-width: 480px) {
	h1 {
		font-size: 24px;
	}
}
/* Phones */
@media only screen
	and (min-device-width: 320px)
	and (max-device-width: 568px) {
		body{
			font-size: 24px;
		}
		#header {
			height: auto;
		}
		#content {
			width: auto;
		}
		#sidebar {
			width: auto;
			clear: both
		}
		#header, #sidebar, #content, #footer {
			border-radius: 16px;
			border-width: 8px
		}
}