* {	margin: 0; padding: 0; }

html {
	height: 100%;
}

@font-face {
	font-family: "CircularStd-Bold";
	src: url('CircularStd-Bold.otf');
}

@font-face {
	font-family: "CircularStd-Book";
	src: url('CircularStd-Book.otf');
}

body {
	background: white;
	width: 100%;
	height: 100%;
}

.background {
	position: fixed;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(49% 150%, #FFFFFF 50%, #F7F5F5 100%);
	background-repeat: no-repeat;
	background-attachment: fixed;
	overflow: hidden;
}

.intro-wrapper {
	position: absolute;
	width: 560px;
	margin-left: -280px;
	left: 50%;
	top: 38%;

}

h1 {
	font-family: CircularStd-Bold;
	font-size: 1.875em;
	color: #000000;
	letter-spacing: -1.37px;
	line-height: 48px;
	text-align: center;
	-webkit-animation: fadein 2s;
	animation: fadein 2s;
}

p {
	width: 100%;
	position: relative;
	text-align: center;
	padding-top: 20px;
	color: #AAA;
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
	-webkit-animation: fadein 4s;
	animation: fadein 4s;
}

a {
	opacity: 0.8;
	font-family: CircularStd-Book;
	font-size: 1em;
	color: #000000;
	letter-spacing: -0.16px;
	line-height: 24px;
	text-decoration: none;
	border-bottom: 1px dotted #888;
	-webkit-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

a:hover {
	color: orange;
	padding-bottom: 2px;
	border-bottom: 1.5px dotted orange;
}

@media only screen and (min-device-width : 320px) and (max-device-width : 568px) {
	.intro-wrapper { width: 320px; margin-left: -160px; left: 50%; top: 35%; }
	h1 { font-size: 1.25em; line-height: 1.5em; }
	p { position: fixed; bottom: 5%; left: 0; }
	body { overflow: hidden; }
}

@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape) {
	.intro-wrapper { width: 560px; margin-left: -280px; left: 50%; top: 40%; }
	h1 { font-size: 1.5em; }
	p { font-size: .875em; }
	
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
