body{
  margin: 0;
  font-family: 'Chelsea Market', cursive;
}
.ball {
  height: 100px;
  width: 100px;
  background-color: red;
  position: absolute;
  top:50px;
  left:50px;
  border-radius: 50%;
  /*display: inline-block;*/
}
#target {
  height: 100px;
  width: 100px;
  background-color: green;
  position: absolute;
  top:500px;
  left:200px;
  border-radius: 50%;
  /*display: inline-block;*/
}
#target-two {
  height: 100px;
  width: 100px;
  background-color: green;
  position: absolute;
  top:150px;
  left:1000px;
  border-radius: 50%;
  /*display: inline-block;*/
}
#score-board {
  height: 50px;
  width: 400px;
  color: black;
  /*font-family: Helvetica, sans-serif;*/
  font-size: 30px;
  top: 400px;
  left: 150px;
  position: absolute;
  /*display: inline;*/
}
#background-player-one{
  height: 50%;
  width: 100%;
  position: absolute;
  top: 0;
  background-color: #C697FF;
}
#background-player-two{
  height: 50%;
  width: 100%;
  position: absolute;
  top: 50%;
  background-color: #F3FFD7;
}
#line-divider{
  height: 10px;
  width: 100%;
  background-color: black;
  position:absolute;
  top: 50%;
}
#score-board-two {
  height: 50px;
  width: 400px;
  color: black;
  /*font-family: Helvetica, sans-serif;*/
  font-size: 30px;
  top: 50px;
  right: 150px;
  position: absolute;
  /*display: inline;*/
}
#start{
  height: 50px;
  line-height: 0px;
  width: 150px;
  left: 400px;
  top:50px;
  position: absolute;
  /*display: inline;*/
}
#comment{
  position: absolute;
  text-transform: uppercase;
  top: 450px;
  left:230px;
  text-align: center;
}
#comment-two{
  position: absolute;
  text-transform: uppercase;
  top: 100px;
  right:300px;
  text-align: right;
}

a{
  font-size: 20px;
  color:black;
  margin:20px;
}
a:hover{
  color:purple;
}

#gameover{
  position: fixed;
  top: 50%;
  border: 5px solid black;
  background-color: white;
  color: black;
  width: 500px;
  height: 400px;
  left:50%;
  margin-left: -250px;
  margin-top: -200px;
  display: none;
}

p{
  top: 50%;
  margin-top: -30px;
  position: fixed;
  left:50%;
  margin-left: -175px;
  font-size: 50px;
  /*display: none;*/
}

#draw{
  margin-left: -75px;
  /*display: block;*/
}
