
/* basic styles for black background and crosshair cursor */
html, body {
	background: #000;
	margin: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

canvas {
	cursor: crosshair;
	display: block;
}

.storytell {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.storytell .chapter {
    width: 100%;
    height: 100%;
    display: none;
}
.storytell .chapter.active {
    display: block;
}
.youtube-video {
    position: fixed;
    top: 0;
    left: 0;
 }
