/*Story */

html {

}

body {
	margin-top: auto;
	margin-bottom: auto;
	background-color: #000000;
}

.noselect {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none;   /* Chrome/Safari/Opera */
	-khtml-user-select: none;    /* Konqueror */
	-moz-user-select: none;      /* Firefox */
	-ms-user-select: none;       /* Internet Explorer/Edge */
	user-select: none;           /* Non-prefixed version, currently not supported by any browser */
}

@font-face {
	font-family: "ComicStripFont";
	src: url('../fonts/KICOMIC_.ttf') format('truetype');
}

#stage {
	width: 1131px;
	height: 607px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	background-image: url('../img/flashback.jpg');
	/* from http://css3.bradshawenterprises.com/cfimg/#cfimg4 */
	transition: background-image 1s ease-in-out; 
}

#text {
	background-color: rgba(0,0,0,0.8);
	position: absolute;
	bottom: -24px;
	font-size: 24px;
	left: 0px;
	color: #ffbf00;
	cursor: pointer;
	border-radius: 3px;
	font-family: ComicStripFont, serif;
	padding: 5px;
	
}

