#startscreen {
	cursor: pointer;
	display: block;
	position: absolute; top: 0; right: 0; bottom: 0; left: 0;
	background-color: #f8f7f5;
	z-index: 1002;
}

#startscreenImage {
	position: absolute;
	display: none;
}


.fade-out {
	opacity: 0;
	animation-name: fadeOutOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 1s;
}

@keyframes fadeOutOpacity {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}