body {
	margin: 0px;
	background-color: black;
}
#pauseMenu {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgb(51,51,51);
	display: none;
	color: white;
	font-size: 30px;
	font-family: Arial;
	padding-top: 250px;
	text-align: center;
}
#restartMenu {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: none;
	color: white;
	font-size: 30px;
	font-family: Righteous;
	text-shadow: 0px 0px 10px darkslategrey;
	background-image: url('ground.png');
	background-repeat: repeat;
	image-rendering: pixelated;
	background-size: 64px 64px;
	padding-top: 175px;
	text-align: center;
}
#roundMenu {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: none;
	background-color: rgb(51,51,51);
	overflow-x: hidden;
}

#restartMenu p {
	cursor: pointer;
}
@keyframes canvasColor {
	0% {
		filter: contrast(139%) brightness(86%) saturate(200%) grayscale(27%) invert(20%) hue-rotate(256deg);
	}
	50% {
		filter: contrast(139%) brightness(86%) saturate(200%) grayscale(27%) invert(20%) hue-rotate(136deg);
	}
	100% {
		filter: contrast(139%) brightness(86%) saturate(200%) grayscale(27%) invert(20%) hue-rotate(256deg);
	}
}
canvas {
	cursor: none;
	image-rendering: pixelated;
}
#controls {
	position: absolute;
	left: 50%;
	top: 610px;
	margin-left: -400px;
	width: 800px;
	font-size: 20px;
	font-family: Arial;
	text-align: center;
}

#titleScreen { 
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-image: url('ground.png');
	background-repeat: repeat;
	background-size: 64px 64px;
	font-family: Righteous;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: red;
	image-rendering: pixelated;
	overflow: hidden;
	cursor: pointer;
	text-align: center;
}
@keyframes titleText {
	0% {
		transform: scale(1,1);
	}
	50% {
		transform: scale(1.1,1.1);
	}
	100% {
		transform: scale(1,1);
	}
}

#title {
	color: white;
	margin: 0 auto;
	height: 210px;
	width: 214px;
	font-size: 34px;
	margin-top: -70px;
	animation: titleText 1.5s infinite ease-in-out;
	background-image: url('explosion.png');
	background-position: 60% 18px;
	background-repeat: no-repeat;
	text-shadow: 0px 0px 10px darkslategrey;
}
#smash {
	font-size: 54px;
	margin-top: -10px;
}
#subText {
	color: white;
	margin: 0 auto;
	font-family: Raleway;
	font-size: 18px;
	margin-top: -60px;
	z-index: 100;
	text-shadow: 0px 0px 4px darkslategrey;
}
#playerImg {
	display: inline;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -430px;
	margin-left: -518px;
}
#red {
	background-color: red;
}
#yellow {
	background-color: yellow;
}
#green {
	background-color: green;
}
#orange {
	background-color: orange;
}
#pink {
	background-color: #ff00ff;
}
#blue {
	background-color: blue;
}
#purple {
	background-color: purple;
}
#colors {
	width: 100%;
	text-align: center;
}
#colors div {
	display: none;
	cursor: pointer;
	width: 32px;
	height: 32px;
}
#powerups {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#powerupinfo {
	font-family: Raleway;
	color: white;
	text-align: center;
	height: 25px;
	width: 100%;
}

@keyframes roundText {
	0% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(-4deg);
	}
	50% {
		transform: rotate(4deg);
	}
	75% {
		transform: rotate(4deg);
	}
	100% {
		transform: rotate(-4deg);
	}
}
#powerupTitle {
	font-family: Righteous;
	color: white;
	text-align: center;
	font-size: 25px;
	width: 100%;
	margin-top: 250px;
	animation: titleText 1.5s infinite ease-in-out;
}
#powerupImgs {
	text-align: center;
	margin-top: 50px;
}
#powerupImgs img {
	width: 48px;
	height: 48px;
	cursor: pointer;
}
#playerColorText {
	font-family: Righteous;
	color: white;
	text-align: center;
	font-size: 25px;
	width: 100%;
	margin-top: 100px;
	margin-bottom: 10px;
	display: none;
}
