/*-------------------------
	Simple reset
--------------------------*/


*{
	margin:0;
	padding:0;
}


/*-------------------------
	General Styles
--------------------------*/


html{
	/* This image will be displayed fullscreen */
	background:url('ms-temp-bg.jpg') no-repeat center center;
	
	/* Ensure the html element always takes up the full height of the browser window */
	min-height:100%;
	
	/* The Magic */
	background-size:cover;
}

body{
	/* Workaround for some mobile browsers */
	min-height:100%;
	font-family: "proxima-nova","Helvetica Neue", Helvetica, Arial, sans-serif;
}

a, a:visited {
	outline:none;
	color:#1c4f64;
}

a:hover{
	text-decoration:none;
}

a:active{
	color: #fff !important;
}

section, footer, header{
	display: block;
}


/*----------------------------
	The Body
-----------------------------*/

.wrapper{
	margin: 0 auto;
	width:660px;
	margin-top: 450px;

}

.content{
	text-align: center;
	margin: 0 auto;
}

.content h1,p{
	color: #c6c6c0;
	line-height: 20px;
	text-shadow: 0px 2px rgba(0,0,0,0.6);
}

.content h1{
	font-size: 36px;
	font-weight: 100;
	margin-bottom:30px;
}

.content p{
	font-size: 18px;
	font-weight:300;
	margin-bottom:60px;
	letter-spacing: 1px;
}

.content img{
	margin-bottom:70px;
}

.content a{
	color: #e5e5e5;
}



