body {
  background-color: #000000;
  position: relative;
  font-family: "Courier New";
  color: #FFFFFF;
}

a {
  color: white;
  text-decoration: none;
}

#title {
  margin-top: 5vh;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: 5em;
  font-family: "Press Start 2P", "Courier New";
  -webkit-font-smoothing: none;
}

#score {
  font-size: 2em;
  margin: 0 auto;
  width: 768px;
  position: relative;
  bottom: -80px;
}

#leftscore {
  float: left;
  width: 45%;
  text-align: right;
}

#rightscore {
  float: right;
  width: 45%;
  text-align: left;
}

#message {
  width: auto;
  margin: 10px auto;
  text-align: center;
}

#field {
  margin: 0 auto;
  width: 768px;
}

.halffield {
  border: 4px solid;
  height: 384px;
  width: 378px;
}

#leftfield {
  border-right-style: dashed;
  float: left;
}

#rightfield {
  border-left-style: none;
  float: right;
}

.paddle {
  background: #FFFFFF;
  height: 80px;
  width: 4px;
}

#leftpaddle {
  position: relative;
  float: left;
  left: 10px;
  top: 152px;
}

#rightpaddle {
  position: relative;
  float: right;
  right: 10px;
  top: 152px;
}

#ball {
  height: 10px;
  width: 10px;
  border-radius: 5px;
  background: #FFFFFF;
  position: relative;
  left: 380px;
  top: 192px;
}

.missile {
  
}

#leftmissile {
  
}

#rightmissile {
  
}

#instructions {
  width: 768px;
  margin: 0 auto;
}

#p1-controls {
  float: left;
  text-align: left;
}

#p2-controls {
  float: right;
  text-align: right;
}

#settings {
  width: 768px;
  margin: 0 auto;
}

.disabled {
  pointer-events: none;
  cursor: not-allowed;
  background-color: gray;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

footer p {
  font-size: 16px;
  margin: 0;
}

#footer-bg-left {
  float: left;
  background-color: #d0400c;
  color: white;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  padding-left: 5px;
  padding-top: 5px;
  height: 25px;
  width: 260px;
}

#footer-bg-center {
  margin: 0 auto;
  color: gray;
  width: 250px;
}

#footer-bg-center p {
  position: relative;
  text-align: center;
  font-size: 12px;
  top: 30px;
}

#footer-bg-right {
  float: right;
  right: 0px;
  background-color: #d0400c;
  color: white;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  padding-left: 15px;
  padding-top: 5px;
  height: 25px;
  width: 210px;
}
