

@CHARSET "UTF-8";



* {
		font-size: 1vw;
font-family: 'Roboto', sans-serif;
	font-weight: 900;
  text-shadow: 0px 0px 3px #fff;
	line-height: 0px;;
  }


html, body {

	margin: 0;
	background: #ffffff;

}

#gamediv {
	margin: 0;
	border: 0px;
	display: block;
	position: relative;
	overflow: visible;
	background-image: url("../pong-images/PongScreen-3.jpg");
	background-size: 100%;
	background-repeat: no-repeat;
}

#playScreen {
	display: block;
	position: relative;
	visibility: visible;
	overflow: visible;
}

#scoreBlock {
	display: block;
	position: relative;
	width: 100%;
	padding-top: 28%;
}

#gameCanvas {
	display: block;
	width: 70%;
	margin: 0 auto;
	position: relative;
	overflow: visible;
	top: -.1vw;
}

#titleScreen {
	display: block;
	position: relative;
	width: 100%;
	height: 200px;
}


#ingamebuttons {
	display: block;
	visibility: hidden;
	position: relative;
	text-align: center;	
	top: 4vw;
	padding-bottom: 6vw;
}
#computerScore,
#playerScore {
	display: block;
	font-size: 6em;
	color: #fff;
	width: 33%;
	position: relative;
	top: -4vw;
}

#computerScore {
	float: left;
	text-align: right;
	margin-bottom: 0;
}
#playerScore {
	float: right;
	text-align: left;
}

#pauseText {
	display: block;
	position: relative;
	top: -4vw;
	margin: auto 0;
	text-align: center;
	font-size: 6em;
	visibility: hidden;
	color: #fff;
	width: 100%;
}

#playButton,
#pauseButton,
#soundButton {
	border: 0px;
	background: #000;
	color: #fbb03d;
	border-radius: 30px;
	z-index: 99999;
}
#playButton{
	display: block;
	position: relative;
	padding: .9em 1em;
	font-size: 6em;
	top : 3vw;
	margin: auto;
	clear: both;
}
#pauseButton,
#soundButton {
	display: inline;
	position: relative;
	padding: .9em 1em;
	font-size: 2.1em;
	font-weight: 300;
	bottom: 10px;
	margin:10px;
}
#pauseButton:hover,
#soundButton:hover,
#playButton:hover {
	background: #fbb03d;
	color: #000;
	text-shadow: 0px 0px 3px #fff;
}

