html {}

body {
	margin: 0;
	padding: 0;
	font-family: Segoe UI, Helvetica, sans-serif;
	background-color: #000099;
}

.page {
	position: relative;
	width: 100vw;
	height: 100%;

	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	-webkit-animation: fadein 1.7s;
	/* Safari, Chrome and Opera > 12.1 */
	-moz-animation: fadein 1.7s;
	/* Firefox < 16 */
	-ms-animation: fadein 1.7s;
	/* Internet Explorer */
	-o-animation: fadein 1.7s;
	/* Opera < 12.1 */
	animation: fadein 1.7s;

}


/*
.header-wrapper {
	background-color: #ffffff;
}
*/


img {
	width: 50%;
	max-width: 500px;
	min-width: 220px;
}

a {
	margin-top: 40px;
	color: white;
	/*	font-size: 380%;*/
	text-decoration: none;
	font-size: 200%;
}


@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;
	}
}

/* Internet Explorer */
@-ms-keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}
