@font-face {
    font-family: 'Myfont';
    src: local('Myfont'), url('fonts/font.eot');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Myfont';
    src: local('Myfont'), url('fonts/font.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

* {
	font-family: 'Myfont', Tahoma, Geneva, sans-serif;
	-webkit-overflow-scrolling: touch;
	-webkit-appearance: none;
	-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
	-webkit-user-drag: none; user-drag: none;
	max-width: 100%;
	outline: none;
}

html {
	background-color: #000;
}

body {
	margin: 0 auto;
	max-width: 51em;
	color: #000;
	background-color: #fff;
	text-align: center;
	word-wrap: break-word;
	font-size: 20px;
	padding: 1em 2em;
	-webkit-text-size-adjust: none;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

p {
	text-align: left;
}

#menu {
	background-color: rgb(0,0,205);
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	margin: 1em 0;
	padding: 0.5em;
}

#menu>* {
	white-space: nowrap;
	margin: 0 0.25em;
	color: rgb(255,255,0);
}

#menu>a {
	color: rgb(255,255,255);
	border-style: none;
}

h1,h2,h3,h4,h5,h6 {
	text-align: center;
	color: rgb(205,0,0);
}

h1 {
	color: rgb(0,205,0);
	margin: 0.5em 0 0 0;
	text-transform: uppercase;
}

h2 {
	margin: 0.5em 0 1em 0;
}

.subtitle {
	color: rgb(205,205,205);
	margin-top: 0;
}

#logo {
	cursor: help;
	margin: 1em 0;
	border-radius: 2em;
	height: auto;
	-webkit-transition: all 300ms ease-out;
			transition: all 300ms ease-out;
}

#logo:hover {
	-webkit-transform: scale(1.1);
			transform: scale(1.1);
}

a, .plink {
	border-bottom: 2px dotted;
	text-decoration: none;
	color: rgb(0,0,205);
	cursor: pointer;
}

a:hover, .plink:hover {
	color: rgb(0,0,255);
	-webkit-transition: all 300ms ease-out;
			transition: all 300ms ease-out;
}

.accent {
	color: rgb(205,0,205);
}

.block {
	padding: 1em;
	border: 2px dashed rgb(205,205,0);
	border-radius: 2px;
}

.block:hover {
	border-color: rgb(0,205,0);
}

.space {
	margin: 2em 0;
}

.block div {
	color: #000;
}

.block>a {
	border-bottom-style: none;
}

.block>span {
	font-size: 1.2em;
}

#copyright {
	margin-top: 5em;
	font-size: 0.8em;
	color: rgb(205,205,205);
}

#copyright>a {
	color: inherit;
}