@charset "UTF-8";
/* CSS Document */

/* ============================
	Fonts
============================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');


/* ============================
	Global Styles
============================ */


body { 
	margin: 0px;
	width: 100%;
	height: 100%;
	background: #071C35;
	font-family: 'Nunito', sans-serif;
	position: absolute;
	display: flex;
  	flex-direction: column;
}


section {
	max-width: 800px;
	
	margin: auto;
	border: none;
	padding-left: 20px;
	padding-right: 20px;
	text-align: center;
	
	
}


.column {
  	float: left;
	
}


.left {
	width: 120px;
	text-align: right;
	margin-right: 40px;
	
}


.right {
	text-align: left;
	max-width: 600px;
}


h1 {
	color: #FFF;
	font-size: 40px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 10px;
}


p {
	margin-top: 0;
	margin-bottom: 0;
	color: #FFF;
	font-size: 20px;
}


button {
	margin-top: 30px;
	font-family: 'Nunito', sans-serif;
	cursor: pointer;
	background: #FD2B63;
	border-radius: 4px;
	text-decoration: none;
	border: none;
	padding: 18px 30px;
	font-size: 18px;
	color: #FFF;
	font-weight: 700;
	margin-right: 10px;
}


button:hover {
	background: #950F33;
}


.button-alt {
	background: #010A14;
}


.button-alt:hover {
	background: #000;
}


.icon {
	margin-left: 4px;
}


.small {
	font-size: 14px;
	margin-top: 30px;
}



/* ============================
	Index Styles
============================ */


.logo {
	padding-top: 8px;
	height: 34px;
}


/* ============================
	Mobile Styles
============================ */


@media only screen and (max-width:800px) {
	
	
	body {
		padding-top: 60px;
		padding-bottom: 60px;
		height: auto;
	}
	
	.logo {
		margin-bottom: 30px;
	}
	
	
	.left {
		width: 100%;
		text-align: left;
	}
	
	
	.right {
		width: 100%;
		max-width: 100%;
	}
	
}
























