@charset "utf-8";
/* Grid System  */

.container{
	width: 900px;
	margin: auto;

}

.gridHeader, .gridMenu, .gridBody, .gridFooter{
	width: 100%;
	float: left;
	display: inline-block;
	box-sizing: border-box;
	margin: auto;
}

.gridHeader{
	height: 200px;
}

.gridHeader img {
	position: fixed;
	
}

.gridMenu {
	background-color: white;
	height: 40px;
	width: 100%
}

.gridBody {
	
}

.gridBody .content {
	width: 75%;
	float:right;
	background-color: lightgray;
}


h1 {
	color: white;
	font-size: 2em;
	float: right;
}

body{
	background: rgb(0,0,0);
	background: linear-gradient(90deg, rgba(0,0,0,1) 61%, rgba(255,209,0,1) 100%);;
}