
*{
	box-sizing:border-box;
}

html,body{
	width:100%;
	height:100%;
}

body{
	margin:0;
	overflow:hidden;
	background:#222;
    font-family: 'PT Mono', monospace;
}
h1{
	margin-top:0;
}

a.button{
	border: none;
    text-decoration: none;
    background: white;
    color: #222;
    font-size: 1.2em;
    padding: 20px 20px;
    border-radius: 50px;
    display: inline-block;
    margin: 50px 0px;
    cursor: pointer;
    white-space: nowrap;
}

a#suggest{
	display: block;
	text-decoration: none;
	color: white;
	padding-left: 10px;
	float:right;
	font-size:0.9em;
	padding-top: 5px;
}

article{
	width:80%;
	margin:auto;
	font-size:2em;
	top:50%;
	position:relative;
	transform:translateY(-50%);
}

a.author {
	position: absolute;
	bottom: 50px;
	right: 50px;
	color: #DDD;
	font-size:0.8em;
	text-decoration: none;
}