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

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

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

#captions {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    position: absolute;
    color: #fff;
    z-index: 1;
    width: 80vw;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 1vh 10vw;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1em;
    line-height: 1.1em;
    pointer-events: none;
    -webkit-user-select: none;
    /* Chrome all / Safari all */
    -moz-user-select: none;
    /* Firefox all */
    -ms-user-select: none;
    /* IE 10+ */
    user-select: none;
    /* Likely future */
}

#captions.fadeIn {
    opacity: 1;
}
