@font-face {
  font-family: 'ScalaSansWeb';
  src: url('fonts/ScalaSansWeb.woff') format('woff');
}
@font-face {
  font-family: 'ScalaSansWeb-Bold';
  src: url('fonts/ScalaSansWeb-Bold.woff') format('woff');
}

* {
	margin: 0;
	padding: 0;
	top: 0;
	left: 0;
}

html, body {
	height: 100%;
}

body {
	background: #ffffff;

	color: #333;
	line-height: 2em;
	position: relative;
	
	font-family: 'ScalaSansWeb', sans-serif;
  
	/* setup OpenType features */
	font-feature-settings: "kern" 1, "liga" 1;
	text-transform: none;
	
	/* vendor prefixes */
	-webkit-font-feature-settings: "kern" 1, "liga" 1;
	-moz-font-feature-settings: "kern" 1, "liga" 1;
	-moz-font-feature-settings: "kern=1, liga=1";
	-ms-font-feature-settings: "kern" 1, "liga" 1;
	-o-font-feature-settings: "kern" 1, "liga" 1;
	
    
    display: flex;
	align-items: center;
	justify-content: center;
    
}

p {
	display: block;
	text-align: center;
	font-size: 1.5em;
}

a,
a:active,
a:visited,
a:focus
{
	color: #000;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
