@font-face {
	font-family: "MyriadPro";
	src: url("assets/fonts/myriad-pro-light.ttf");
}

html,
body {
	height: 100%;
	width: 100%;
	color: #ed4e1b;
	font-family: "MyriadPro";
	letter-spacing: .1em;
	min-height: 45em;
}

.hero {
	background-position: center bottom;
	background-color: #f4f4f4;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url('assets/images/flowers.jpg');
	height: 100%;
	width: 100%;
	
}

.flexCenter {
	height: 100%;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

h1 {
	font-size: 2.5em;
	max-width: 10em;
	text-align: center;
	margin: 25vh 0 .5em;
	padding: 0 1em;
}

h2 {
	font-size: 1.2em;
	padding: 0 1.2em;
	text-align: center;
	margin: 0 0 2em;
}

a {	
	color: white;
	padding: 1em 3em;
	text-decoration: none;
	background-color: rgb(237,78,27);
	border-radius: .3em;
	-webkit-transition: 0.1s ease-in;	html, 
	body {
		min-height: 45em;
	}
	transition: 0.1s ease-in;
}

a:hover {
	cursor: pointer;
    opacity: 0.8;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

@media only screen and (min-width : 480px) {
	h1 {
		max-width: 13em;
		margin: 5em 0 .5em;
	}
	

	h2 {
		max-width: 15em;
	}
}


@media only screen and (min-width : 992px) {
	h1 {
		font-size: 3.5em;
		max-width: 9.9em;
		padding: 0;
		margin: 2em 0 .5em;
	}

	h2 {
		font-size: 1.2em;
		padding: 0;
		max-width: none;
	}
}

@media only screen and (min-width : 1200px) {
	h1 {
		margin: 2em 0 .2em;
	}
}

@media only screen and (min-height : 669px) {
	html {
		font-size: 2.2vh;
	}
}