@charset "utf-8";

body {margin: 0;}

h1, h2
{
	font-family: 'Source Serif Pro', serif;
	font-weight: 400;
}

section
{ 
	height: 100vh;
	box-sizing: border-box;
	padding: 0;
	margin: 0;

	display: flex;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	
	-webkit-align-items: center;
	-webkit-flex-direction: row;
	flex-direction: row;

	background-color: #FFF;
	align-items: center;
	justify-content: center;
	
	-webkit-flex: 1;
	-ms-flex: 1;
    flex: 1;
	
	-webkit-align-self: center;
    align-self: center;
}

h1
{
	font-size: 2em;
}

h2
{
	font-size: 1em;
	position: absolute;
	right: 20px;
	bottom: 10px;
}

a
{
	text-decoration: none;
	color: black;
}