html, body{
  		margin: 0;
  		padding: 0;
  		height: 100%;
  		width: 100%;
  		font-family: 'Oswald', sans-serif;
  	}
		#full-page{
			margin: 0;
			padding: 0;
			height: 100%;
			width: 100%;
			background-image: url(/desert.jpeg);
			-webkit-background-size: 100%; 
		  -moz-background-size: 100%; 
		  -o-background-size: 100%; 
		  background-size: 100%; 
		  -webkit-background-size: cover; 
		  -moz-background-size: cover; 
		  -o-background-size: cover; 
		  background-size: cover; 
			background-repeat: no-repeat;
			background-position: center;
			background-attachment: fixed;
		}
		h1{
			text-transform: uppercase;
			letter-spacing: 2px;
			font-size: 3rem;
			margin-bottom: 0;
		}
		h1, h2{
			color: white;
			text-align: center;
		}
		h2{
			letter-spacing: 1px;
			font-weight: normal;
			margin-top: .5rem;
		}
		a{
			text-decoration: none;
			color: #E13B2A;
		}
		header{
			position: absolute;
			top: 40%;
			left: 50%;
			transform: translate(-50%, -50%);
			-webkit-transform: translate(-50%, -50%);
		}