* {
	image-rendering: pixelated;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Pixelify Sans", sans-serif;
	color: #ffe8a6;
}

body {
	background: black;
}

#canvas-container {
	image-rendering: pixelated;
	position: relative;
	width: 800px;
	height: 800px;
	margin: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

#ballbust {
	image-rendering: pixelated;
	background: url('BG.jpg') no-repeat;
	background-size: cover;
	border-radius: 0;
	color: #ffe8a6;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #ffe8a6;
}

#start-screen, #score-screen, #pause-screen {
	image-rendering: pixelated;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

#start-overlay {
	image-rendering: pixelated;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7); 
	z-index: 1; 
}

#score-title {
	image-rendering: pixelated;
	font-family: "font";
	font-size: 54px;
	color: #ffe8a6;
	margin: 10px;
	padding-bottom: 10px;
	z-index: 2;
}

#final-score {
	image-rendering: pixelated;
	font-family: "font";
	font-size: 38px;
	color: #ffe8a6;
	margin: 16px;
	padding-bottom: 20px;
	z-index: 2;
}

#buster-title {
	image-rendering: pixelated;
	text-align: center;
	line-height: 40px;
	font-family: "font";
	font-size: 22px;
	color: #ffe8a6;
	margin: 26px;
	padding-bottom: 20px;
	z-index: 2;
}

#score-screen {
	display: none;
}

#pause-screen {
	display: none;
}

#play-button, #replay-button {
	image-rendering: pixelated;
	font-size: 24px;
	padding: 10px 20px;
	background-color: black;
	border: 2px solid #ffe8a6;
	cursor: pointer;
	z-index: 2; 
}
#unpause-button {
	image-rendering: pixelated;
	font-size: 24px;
	padding: 10px 20px;
	margin-top: 2rem;
	background-color: black;
	border: 2px solid #ffe8a6;
	cursor: pointer;
	z-index: 2;
}

#menu-button, #menu-button-end {
	image-rendering: pixelated;
	font-size: 24px;
	padding: 10px 20px;
	margin-top: 40px;
	background-color: black;
	border: 2px solid #ffe8a6;
	cursor: pointer;
	z-index: 2;
}

#logo {
	z-index: 2;
	image-rendering: pixelated;
	padding-bottom: 6rem;
	margin-top: 6rem;
}

#instructions {
	font-family: "font";
	font-size: 16px;
	color: #ffe8a6;
	margin-top: 6rem;
	line-height: 40px;
	padding-bottom: 20px;
	text-align: center;
	z-index: 2;
}

#turbo-note {
	display: none;
	font-family: "font";
	font-size: 16px;
	color: #c4800a;
	margin-bottom: 2rem;
	line-height: 40px;
	padding-bottom: 20px;
	text-align: center;
	z-index: 2;
}

#pause-text {
	font-family: "font";
	font-size: 16px;
	color: #ffe8a6;
	margin-top: 1rem;
	line-height: 40px;
	padding-bottom: 20px;
	text-align: center;
	z-index: 2;
}

#version {
	font-family: "font";
	float: right;
	font-size: 8px;
	color: #ffe8a6;
	margin-top: 4rem;
	padding-bottom: 80px;
	text-align: right;
	z-index: 2;
}

#mute-button {
	display: none;
	position: absolute;
	image-rendering: pixelated;
	top: 10px;
	right: 240px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

#turbo-button {
	image-rendering: pixelated;
	margin-right: 190px;
	width: 40px;
	height: 40px;	
	cursor: pointer;
}

h2 {
	display: block;
	line-height: 0px;
	margin-top: -24px;
}

#turbo {
	text-align: center;
	margin-top: 20px;
	margin-left: 44px;
	z-index: 2;
}

#turbo-background {
	width: 100%;
	height: 200px; /* Adjust the height of the banner */
	overflow: hidden;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: -1; /* Ensure the background stays behind other content */
	background-size: cover;
	background-image: url('turboBG.jpg');
	background-position: center;
	animation: scrollBackground 20s linear infinite; /* Adjust animation duration as needed */
}

@keyframes scrollBackground {
	0% {
		background-position: center 0;
	}

	100% {
		background-position: center -100%;
	}
}