/* CSS RESET */

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;
}
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;
}

/****************/
/* CUSTOM STUFF */
/****************/

body {
	color: #201f1d;
	background-color: #ececec;
	font-family: 'Source Code Pro', monospace;
	font-weight: 400;
	font-size: 100%;
	line-height: 1.35em;
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
        overflow:hidden;
}

a {
	cursor: pointer;
	color: #b56700;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}

h1 {
	font-size: 1.5em;
	line-height: 1.5em;
}

h2 {
	font-size: 1.125em;
}

p {
	font-size: 0.8em;
	margin-bottom: 0.8em;
}

em {
	font-style: italic;
}

strong {
	font-weight: 700;
}

ul {
	font-size: 0.80em;
	list-style-type: disc;
	list-style-position: inside;
	margin: 0.8em 0em;
}

ol {
	font-size: 0.80em;
	list-style-type: decimal;
	list-style-position: inside;
	margin-bottom: 0.8em;
}

li {
	line-height: 1.5em;
}

/**********/
/* LAYOUT */
/**********/

#main_box {
	text-align: left;
}

#title_box {
	margin-bottom: 2em;
	width: 361px;
}

@media (min-width: 900px) {
#title_box {
	width: 680px;
}
#title_box h1 {
	font-size: 4em;
}
#title_box p {
	font-size: 1.5em;
}
}

.tp {
	padding-top: 0.6em;
}

#scroller p {
	display: none;
}
#scroller > .current {
	display: block;
}
