@font-face {
	font-family: First Family;
	src: url("https://rawcdn.githack.com/dragon900x/simon/163ad8310440c7966807cf87b68f072dccaa778c/fonts/HelveticaNeueLTStd-BlkCn.otf");
}
body {
	font-family: 'First Family', sans-serif;
	margin: 0;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	user-drag: none;
	user-select: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}
h1 {
	font-family: 'First Family', sans-serif;
	margin-left: auto;
	margin-right: auto;
	margin-top: auto;
	margin-bottom: auto;
	text-align: center;
	font-size: 4em;
	color: white;
	-webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.logo {
	position: absolute;
	height: 200%;
	display: block;
	margin-left: 5%;
	z-index: 10;
	float: left;
	text-align: center;
	color: white;
	-webkit-animation: fade-in-top 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fade-in-top 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.section {
	font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}
.intro p {
	font-weight: bold;
	font-size: 3em;
	color: #E6127C;
	position: absolute;
	right: 0;
	left: 0;
	bottom: 15%;
	text-align: center;
	margin: auto;
	-webkit-animation: fade-in-top 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fade-in-top 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.intro h2 {
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	text-align: center;
	bottom: 9%;
	font-weight: normal;
	color: #293F74;
	font-size: 1.2em;
	-webkit-animation: fade-in-top 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fade-in-top 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.btn {
	font-family: -apple-system, BlinkMacSystemFont, sans-serif;
	position: absolute;
	top: 20px;
	right: 60px;
	height: 30px;
	color: #293F74;
	-webkit-animation: fade-in-top 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fade-in-top 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
#header {
	position: fixed;
	height: 75px;
	display: block;
	width: 100%;
	z-index: 1;
	text-align: center;
	background-color: white;
	padding: 20px 0 0 0;
	top: 0px;
}
#homephone {
	height: 60%;
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	bottom: 10%;
	margin: auto;
	-webkit-animation: fade-in-top 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fade-in-top 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.leftphone {
	position: absolute;
	right: 0;
	left: -67%;
	top: 0;
	bottom: 0;
	margin: auto;
}
.rightphone {
	position: absolute;
	right: 0;
	left: 67%;
	top: 0;
	bottom: 0;
	margin: auto;
}
#track {
	background: linear-gradient(to left, #E6127C 67%, #293F74 50%);
}
#budget {
	background: linear-gradient(to right, #293F74 67%, #E6127C 50%);
}
#track h2 {
	position: absolute;
	font-size: 5em;
	font-weight: bold;
	color: #293F74;
	left: 38%;
	top: 30%;
}
#track p {
	position: absolute;
	font-size: 1.2em;
	font-weight: normal;
	color: white;
	left: 38%;
	top: 45%;
	width: 700px;
	text-align: left;
}
#budget h2 {
	position: absolute;
	font-size: 5em;
	font-weight: bold;
	color: #E6127C;
	right: 38%;
	top: 30%;
	text-align: right;
}
#budget p {
	position: absolute;
	font-size: 1.2em;
	font-weight: normal;
	color: white;
	right: 38%;
	top: 45%;
	width: 700px;
	text-align: right;
}
#buynow h2 {
	position: absolute;
	font-size: 5em;
	font-weight: bold;
	color: #293F74;
	left: 35%;
	top: 30%;
}
#buynow p {
	position: absolute;
	font-size: 1.2em;
	font-weight: normal;
	color: black;
	left: 35%;
	top: 45%;
	width: 700px;
	text-align: left;
}
.pinktext {
	color: #E6127C;
	font-weight: bold;
}
.bluetext {
	color: #293F74;
	font-weight: bold;
}
/* Animations */

@-webkit-keyframes fade-in-top {
	0% {
		-webkit-transform: translateY(-50px);
		transform: translateY(-50px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}
@keyframes fade-in-top {
	0% {
		-webkit-transform: translateY(-50px);
		transform: translateY(-50px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}
