@charset "utf-8";
/* CSS Document */



/*Layout*/


html {
	height:100%;
}

body {
    margin:0;
	background-image: url("../img/dreamy-heart.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height:100%;
}

.content {
  min-height: 100%;
}
.content-inside {
  margin-bottom: -4%;
}
#header	{
		padding-top:30%;
		text-align:center;
		padding-bottom:1%;
		font-size:3em;
}
#tagline {
		padding-top:0.2%;
		text-align:center;
		padding-bottom:3%;
		font-size:1.2em;
}
p 		{
		text-align:center;
}

/*Typography*/
	
h1	{
	font-family:proxima-nova, sans-serif;
	font-style:normal;
	font-weight:100;
}
body {
	font-family:Open Sans, sans-serif;
	font-style:normal;
	font-weight:100;
}
#tagline {
	font-family:Open Sans, sans-serif;
	font-style:normal;
	font-weight:100;
}


/*Media Queries*/

/*Tablet*/
@media (max-width:1024px) {   /*landscape*/
	.content-inside {
		margin-bottom: 1%;
	}
	#header {
		text-align:center;
		padding-left: 0.5%;
	}
	#tagline {
		text-align:center;
		padding-left: 0.5%;
	}
	
}

/*Tablet*/
@media (max-width: 768px) {   /*portrait*/
	.content-inside {
		margin-bottom: -12%;
	}
	#header {
		text-align:center;
		padding-left: 0.5%;
	}
	#tagline {
		text-align:center;
		padding-left: 0.5%;
	}
	
}

/*Mobile*/
@media (max-width:736px) {		/*landscape*/
	html, body {
		height: 100%;
	}
	.content-inside {
		margin-bottom: 0;
		padding-bottom: -20%;
	}
	#header {
		text-align:center;
	}
	#tagline {
		text-align:center;
	}
	
}


}/*Mobile*/
@media (max-width: 414px) {   /*portrait*/
	html, body {
		height: 100%;
	}
	.content-inside {
		margin-bottom: -20%;
	}
	#header {
		text-align:center;
	}
	#tagline {
		text-align:center;
	}
	
}