html, body {
    margin: 0;
    width: 100%;
    height: 100%;
	overflow: hidden;
	background-color: black;
}

#start {
	position: fixed;
	width: 100vw;
	text-align: center;
	top: 300px;
    display: none;
	z-index: 1001;
}

#screen {
	position: fixed;
	display: block;
    width: 100vw;
    height: 100vh;
    background-color: black;
	z-index: 11;
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	z-index: 0;
}

#scrolltext {
	position: fixed;
	top: 20px;
	width: 100vw;
	font-size: 72px;
	color: red;
	font-family: VT323,monospace;
	font-weight: normal;
	z-index: 1000;
}

#scrolltext p {
	text-align: center;
	white-space: nowrap;
}

#end {
	display: none;
	margin-left: 50px;
	font-size: 36px;
	color: red;
	font-family: VT323,monospace;
	font-weight: normal;
}

img.animal {
    position: absolute;
    transform: translate(-50%, -50%);
}