html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@font-face {
	font-family: 'Gobold';
	src: url('/assets/gobold-font.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

body {
	padding: 0;
    margin: 0;
    background-color: white;
    color: black;
    font-family: 'Exo', 'Helvetica', sans-serif;
    overflow: hidden;
    display: table;
    width: 100%;
    height: 100%;
    position: absolute;
	line-height: 1.3em;
}

a {
	color: inherit;
}

a.to-home {
	text-transform: uppercase;
    font-family: "Gobold";
    background: black;
    color: white;
    text-decoration: none;
    padding: 0.35em 2em;
    margin: 0.5em;
    display: inline-block;
}

h1 {
    font-family: "Gobold", sans-serif;
    text-transform: uppercase;
    transform: skew(-10deg, 0deg);
}

main {
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	padding: 15px;
}

img {
    width: 15%;
    max-width: 200px;
}