html {
	height: 100%;
}

body {
	display: block;
	font-family: 'Prociono', serif;
	font-size: 2.5em;
	height: 100%;
	margin: 0;
	overflow: hidden;
}

@media (orientation:landscape) {
	body {
		font-size: 2.5em;
	}
}

@media (orientation:portrait) {
	body {
		font-size: 1.5em;
	}
}

h1 {
	font-size: 150%;
	font-weight: normal;
}

a {
	text-decoration: none;
	color: black;
	cursor: pointer;
}

#wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

#lineImage {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;

	stroke-dasharray: 1200;
	stroke-dashoffset: 1200;
}

#main {
	position: relative;
	display: table;
	height: 100%;
	width: 100%;
	padding-left: 100%;
	z-index: 999;

	white-space: nowrap;
}

#text {
	display: table-cell;
	vertical-align: middle;
}

#titleDiv {
	display: table;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
}

#titleText {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 100%;
	text-align: center;
}

#creditsDiv {
	display: table;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
}

#creditsText {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 100%;
	z-index: 1000;
	text-align: center;
	opacity: 0;
}

.translatedText {
	font-size: 66%;
}

.titleSpace {
	display: inline-block;
	width: 15em;
}

@keyframes dash {
	from {
		stroke-dashoffset: 1210;
	}

	to {
		stroke-dashoffset: 0;
	}
}

@keyframes textScroll {
	from {
		transform: translateX(0%);
	}

	to {
		transform: translateX(-97%);
	}
}

@keyframes titleScroll {
	from {
		transform: translateX(0%);
	}

	to {
		transform: translateX(-1000px);
	}
}

@keyframes creditsFade {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}
