html,
body {
	overflow: hidden;
	margin: 0;
	width: 100%;
	height: 100%;
}

#loading-screen {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 1;
	transition: 1s opacity;
}

#loading-screen.fade-out {
	opacity: 0;
}

#introscreen {
	width: 100%;
	height: 100%;
	position: absolute;
	background: black;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transition: 1s opacity;
}

#introscreen.fade-out {
	pointer-events: none;
	opacity: 0;
}

#winscreen {
	width: 100%;
	height: 100%;
	position: absolute;
	background: black;
	opacity: 0;
	display: none;
	transition: 1s opacity;
}

#wincontainer {
	display: none;
	/* display: flex;  */
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

#winText {
	color: lightgreen;
	font-size: 7vw;
	font-family: "Wallpoet", monospace;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

#money-tally {
	font-size: 1.2em;
	color: red;
}

#score-display {
	position: absolute;
	font-family: "Ubuntu", sans-serif;
	color: white;
	bottom: 0;
	font-size: 30px;
	display: none;
}

#credits {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-family: "Ubuntu", sans-serif;
	font-size: 25px;
	color: white;
}

a:link {
	color: lightpink;
}

a:visited {
	color: lightcoral;
}

#loader {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #9370db;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}
#loader:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #ba55d3;
	-webkit-animation: spin 3s linear infinite;
	animation: spin 3s linear infinite;
}
#loader:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #ff00ff;
	-webkit-animation: spin 1.5s linear infinite;
	animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
