 #game {
width: 370px;
    height: 185px;
  margin-top: 5px;
  border: 2px dashed black;
  position: relative;
  outline: 2px outset;
}

.divider {
  width: 1px;
  height: 100%;
  position: absolute;
  left: 50%;
  background: black;
  transform: translateX(-50%);
}


#board {
  width: 100%;
  height: 100%;
  background: url(https://i.pinimg.com/736x/ee/44/5a/ee445aed97edc32988302b5cb74df69e.jpg);
  background-size: 370px;
}

#paddle-left, #paddle-right {
  width: 10px;
  height: 50px;
  position: absolute;
  border: 1px outset black;
}

#paddle-left {
  left: 0;
  background: linear-gradient(45deg, black, #DACDE7) !important;
}

#paddle-right {
  right: 0;
  background: linear-gradient(45deg, black, #FBD5E4) !important;
}


#ball {
  width: 30px;
  height: 30px;
  position: absolute;
  background-size: 30px !important;
  background: url(https://i.postimg.cc/02bPBq6j/jirajirajii-removebg-preview.png);
}