/* Font smoothing */
html, html a {
	-webkit-font-smoothing: antialiased;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}

body {
	font-family: "Open Sans";
	background-color: #000000;
	color: #ffffff;
}

.vertical-align {
	min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
	min-height: 100vh; /* These two lines are counted as one :-)       */
	display: flex;
	align-items: center;
	background-color: #000000;
	color: #ffffff;
	margin: 0;
	padding: 0;
}

.card-wrapper {
	display: table;
	margin: 0 auto;
/* 	border: 1px solid silver; */
}
	.card-wrapper h1.logo {
		width: 487px;
		height: 130px;
		text-indent: -9999em;
		background-image: url(../img/logo.svg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 66%;
		opacity: 100%;
		margin: 0 auto;
	}
	h1 {
		color: #ffffff;
		text-align: center;
		font-size: 32x;
		font-weight: 400;
	}
	
	h2 {
		color: #ffffff;
		text-align: center;
		font-size: 20px;
		font-weight: 400;
		margin-top: 33%;
	}
	
	h3 {
		color: #ffffff;
		text-align: center;
		font-size: 16px;
		font-weight: 400;
		line-height: 18px;
	}
	span {
		color: #2a44e2;
	}

	a, a:hover {
		color: #ffffff;
	}
	.card-wrapper hr {
		width: 100%;
		height: 1px;
		background-color: #2a44e2;
		border: none;
	}
	.card-wrapper p {
		text-align: center;
		font-size: 16px;
		line-height: 26px;
		font-weight: 400;
		padding: 16px 0;
		margin: 0 auto;
	}
		.card-wrapper p::selection,
		h3 p::selection,
		h4 p::selection,
		h5 p::selection,

		{
			background: #000000; /* WebKit/Blink Browsers */
			color: white;
		}
		.card-wrapper p::-moz-selection
		h3 p::-moz-selection,
		h4 p::-moz-selection,
		h5 p::-moz-selection,
		 {
			background: red; /* Gecko Browsers */
			color: white;
		}
		.card-wrapper p span {
			color: #e8b808;
		}
		.card-wrapper p a {
			color: #000f46;
			text-decoration: none;
			padding: 2px 8px;
			font-weight: 400;
			background-color: white;
		}
			.card-wrapper p a:hover {
				color: white;
				background-color: #e8b808;
				-webkit-transition: background-color 300ms linear;
				-moz-transition: background-color 300ms linear;
				-o-transition: background-color 300ms linear;
				-ms-transition: background-color 300ms linear;
				transition: background-color 300ms linear;
			}



/* Responsive-ness =) */
@media (max-width: 767px) {

	.card-wrapper h1.logo {
		width: 320px;
		height: 137px;
		text-indent: -9999em;
		background-image: url(../img/logo.svg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 80%;
		margin: 0 auto;
	}
	.card-wrapper hr {
		width: 320px;
	}
	.card-wrapper p {
		width: 85%;
		font-size: 16px;
		line-height: 28px;
		font-weight: 400;
		padding: 20px 0;
	}

	h3 {
		font-size: 13px;
		line-height: 16px;
	}

}



