/* CSS Document */

body {
	background-image: url("images/beachsunset.jpg");
	background-repeat: no-repeat;
	background-position: center 100px; /*x position center, y position 100 px down for header*/
	background-attachment: fixed;
	width: 100%;
	padding-top: 771px;
}
header {
	position: fixed;
	top: 0;
	left:0;
	width:100%;
	height: 100px;
	background:#2D4E87;
	color:azure;
	display: block;
	line-height: 18.4px;
	text-size-adjust: 100%;
}
header h1 {
	margin-left: 90px;
	padding-top: 20px;
	font-family: Arial;
}
section{
	background-attachment: scroll;
	background-clip: border-box;
	background-color: rgb(255,255,255);
	background-size: auto;
	display: block;
	height: auto;
	line-height: 18.4px;
	padding-top: 30px;
	padding-bottom: 30px;
	width: 100%;
}
article p {
	color:#2D313F;
	font-family: "Montserrat Medium";
	font-size: 24px;
	line-height: 36px;
	margin-left: 130px;
	margin-right: 140px;	
}
footer{
	background-attachment: scroll;
	background-clip: border-box;
	background-color: #2D4E87;
	background-image: none;
	background-position-x: 0%;
	background-position-y: 0%;
	background-size: auto;
	height: 100px;
	width: 100%;
	display: block;
	font-family: Arial;
	font-size: 24px;
	text-size-adjust: 100%;
	line-height: 18.4px;
	padding-bottom: 50px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 50px;
	text-align: center;
	color: azure;
	
}
@media (max-width: 603px) {
	header h1 {
		font-size: 24px;
	}
	
}

