body {
	background-color: #141414;
	padding: 0;
	margin: 0;
	text-align: center;

}

a {
	color: #3194FA;
	text-decoration: none;
}

p {
    font-family: -apple-system, sans-serif;
	font-weight: 500;
	font-size: 17px;
	text-align: center;
	color: white;
	margin: 8px;
}

h1 {
	font-family: -apple-system, sans-serif;
	font-weight: 800;
	font-size: 48px;
	line-height: 48px;
	color: white;
	margin: 24px 0 8px;
	padding: 0 16px;
}

h2 {
	font-family: -apple-system, sans-serif;
	font-weight: 400;
	font-size: 32px;
	line-height: 40px;
	color: white;
	margin: 0 0 64px;
}	

p.disabled {
	color: rgba(255,255,255,0.35);
	margin-bottom: 64px;
}

.header {
	max-width: 640px;
	margin: 24px auto;
	padding: 0 24px;	
}
	
.icon {
	margin-top: 64px;
}

.phonedesktop {
	margin: 0 auto;
	max-width: 1280px;
}

.phonemobile {
	display: none;
}

/* 
--------------

MEDIA QUERRIES

--------------
*/

@media (max-width: 640px){
 
	h1 {
		font-size: 32px;
		line-height: 40px;
	} 
	
	h2 {
		font-size: 24px;
		line-height: 32px;
	}

	
	.phonedesktop {
		display: none;
	}
	
	.phonemobile {
		display: initial;
	}
	


}




