body{
	margin: 0;
	padding: 0;
	/*background: #2f4ba5;*/
}

header {
	position: fixed;
	height: 114px;
	width: 100%;
	background-color: white;
	z-index: 1;
}

h1 {
	position: relative;
	top: 39px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	margin: 0 auto;
	color: black;
	font-family: "Helvetica";
	font-weight: 100;
	font-size: 30px;
}

ul {
	position: relative;
	top: 50px;	
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	margin: 0;
	padding: 0;
	display: block;
}

li {
	display: inline;
	margin: 5% 5%;
}

a {
	text-decoration: none;
	color: black;
	font-family: "Helvetica";
}

section {
	position: absolute;
	top: 114px;
}

/* -----------------------------------
IPHONE PORTRAIT
------------------------------------ */
@media screen and (min-width: 480px){
	body {
		/*background: #fb4120;*/
	}

	h1 {
		font-size: 36px;
	}

	li {
		margin: 10% 10%;
	}
}

/* -----------------------------------
IPAD PORTRAIT
------------------------------------ */
@media screen and (min-width: 768px){
	body {
		/*background: #fd9c07;*/
	}

	h1 {
		font-size: 36px;
	}

	ul {
		position: relative;
		top: 50px;	
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
	}

	li {
		margin: 10% 10%;
	}
}

/* -----------------------------------
IPAD LANDSCAPE + NETBOOK
------------------------------------ */
@media screen and (min-width: 1024px){
	body {
		/*background: #549acd;*/
	}

	h1 {
		position: absolute;
		left: 36px;
		transform: translateX(0%);
		font-size: 36px;
	}

	ul {
		position: absolute;
		top: 53px;
		right: 36px;
		transform: translateX(20%);
	}

	li {
		margin-right: 0;
	}
}

/* -----------------------------------
DESKTOP
------------------------------------ */
@media screen and (min-width: 1200px){
	body {
		/*background: #7eca68;*/
	}

	h1 {
		font-size: 36px;
	}

	ul {
		position: absolute;
		top: 53px;
		right: 36px;
		transform: translateX(20%);
	}

	li {
		margin-right: 0;
	}
}


