* {
	margin: 0;
	padding: 0;
}

body {
	display: flex;
	min-height: 100vh;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	padding: 0;
}

#body-cover {
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgb(201,220,227);
	opacity: 1;
	pointer-events: none;
}

#score-container {
	position: relative;
	z-index: 20;
	width: 80vw;
	height: 100vh;
	border-radius: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2em;
}

#score {
	position: absolute;
	z-index: 30;
	 top: 100%;
	 left: 0;
	width: 100%;
	height: auto;
	opacity: 0;
	pointer-events: none;
}

#heading {
	position: absolute;
	z-index: 40;
	top: 25vh;
	left: 0;
	right: 0;
	margin: auto;
	padding: 4vw;
	font-family: artane, sans-serif;
	font-size: 4vw;
	text-align: center;
	background-color: rgba(255,255,255,0.7);
	background-clip: border-box;
	box-shadow: 0 0.5vw 3vw 0 rgba(0,0,0,0.2);
	opacity: 0;
	pointer-events: none;
}

#not-playing-msg {
	display: none;
	z-index: 50;
	text-align: center;
	width: 50%;
}

#but-skip-2 {
	position: absolute;
	z-index: 50;
	display: none;
	bottom: 20px;
	right: 20px;
}

@media screen and (max-width: 500px) {
	#score-container {
		height: 90vh;
		margin-top: 20vh;
	}
	#heading {
		top: 40vh;
	}
	#score {
		top: 80%;
	}
}
