html, body {
    background-color: rgb(0, 0, 0);
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

canvas {
    width: 100%;
    height: 100%;
}

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

#font-preloader {
	position: absolute;
	top: 0;
	left: -9999px;
	color: white;
}

#font-preloader{
	position: absolute;
	top: -9999px;
	left: -9999px;
}

@font-face {
    font-family: 'SesameFont';
    src: url('./assets/fonts/SesameTeachingBlack.otf') format('opentype');
    font-weight: normal;
}

#captions {
	margin: 0 auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-in-out;
    position: fixed;
	top: 0;
    color: #fff;
    z-index: 10;
    width: 75%;
	left: 50%;
	transform: translate(-50%, 0);
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.1em;
    pointer-events: none;
	border-radius: 0 0 25px 25px;
	font-size: 1.5em;

	/* @media only screen and (max-width: 1024px) {
		font-size: 1.3em;
	} */

	
}


#captions.fade-in {
    opacity: 1;
    transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
}
#captions p {
    margin-left: 1em;
    margin-right: 1em;
}
