html,body,#app {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'roboto';
    font-weight: 100;
}
.pong-court {
    display:block;
    height: 100%;
    margin: 0;
}
.message {
  position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 30px;
	text-align: center;
	white-space: nowrap;
	color: rgba(0,126,229,0.5);
	font-weight: 100;
	z-index: -1;
	transition: 1.0s all;
}
.message.ng-hide {
  opacity: 0.0;
}
.hint {
  font-size: 12px;
  text-align: right;
  color: #ccc;
  text-transform: uppercase;
  display:block;
}
.ball {
    display: block;
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #007ee5;
}

.paddle {
    display: block;
    position: relative;
    width: 15px;
    height: 60px;
    background-color: #007ee5;
}
.score {
    color: #ccc;
    position: absolute;
    bottom: 10px;
    font-size: 50px;
    line-height: 50px;
    height: 50px;
    left: 50%;
    transform: translateX(-50%);
}
.score .left, .score .right {
  float:left;
  width: 60px;
  text-align: center;
  transition: all 0.3s;
}
.score .divider {
  float:left;
  margin: 0 10px;
  font-size: 22px;
  font-weight: 700;
  vertical-align: top;
  line-height: 43px;
}
.score .winner {
  color: #007ee5;
  transform: scale(1.5);
}
