body {
	margin: 0px;
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #1c1f25;
}


#game-container {
  width: 600px;
  height: 400px;
  border: 1px solid rgb(67, 65, 90);
  background-color: rgb(67, 65, 90);
  position: relative;
}
#ball {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: rgb(255, 153, 0);
  position: absolute;
}
#paddle {
  width: 100px;
  height: 10px;
  background-color: rgb(58, 122, 194);
  position: absolute;
  bottom: 0;
}

#Score {
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  width: 40px;
  height: 30px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center ;
  margin:10px;
  border-radius: 10px;
  color: rgb(255, 255, 255);
  background-color: rgb(49, 48, 66);
}