/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family: 'Orbitron', sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

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


/* Main CSS
*/

.universe {
	width: 100%;
	height: 100%;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

body {
	color: #ddd;
	background: #3F3F3F;
	font-family: 'Lato', "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 300;
    margin: 0;
}

canvas { width: 100%; height: 100% }

.absolute-center * {
	text-align: center;
}

h1 {
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
    font-size: 4em;
    margin: 50px 0 0 0;
    font-weight: 300;
}

b {
	font-weight: bold;
}

p {
	font-weight: 300;
    font-size: 1.2em;
}

.button {
	padding: 10px;
	background: transparent;
	border: #ddd 2px solid;
	border-radius: 1px;
}
.button:hover {
	background: #ddd;
	color: #3F3F3F;
}

ul.touch {
	margin: 25px;
}
ul.touch > li {
	display: inline-block;
	margin: 5px;
}
a {
	color: #ddd;
}