body {
  font-family: "Press Start 2P", system-ui;
  height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #111;
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.gameArea {
  position: absolute;
  width: 600px;
  height: 400px;
  background-color: rgba(7, 26, 49, 0.6);
  top: 182px;
  border: 10px solid #9191bbc7;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  transform: perspective(1000px) rotateX(33deg) scaleX(0.54) scaleY(0.84);
}
.bg {
  position: absolute;
  height: 1000px;
  z-index: -1;
}
.paddle {
  height: 100px;
  width: 20px;
  background-color: rgba(225, 255, 255, 0.9);
  position: absolute;
  top: 150px;
  box-shadow: 4px 10px 4px rgba(0, 0, 0, 0.1);
}

.paddle2 {
  right: 0; /*this move the paddle to the right*/
}

.ball {
  position: absolute;
  height: 20px;
  width: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  left: 290px; /*to put the ball center*/
  top: 190px;
  box-shadow: 4px 10px 4px rgba(0, 0, 0, 0.9);
}

.net {
  position: absolute;
  border-right: 8px dotted rgba(225, 255, 255, 0.3);
  height: 96%;
  top: 2%;
  left: calc(50% - 4px);
}
.title {
  position: absolute;
  top: 88px;
  font-size: 26px;
}
.score {
  position: absolute;
  top: 88px;
  display: flex;
  width: 68px;
  height: 60px;
  justify-content: center;
  align-items: center;
}
.player1Score {
  left: calc(50% - 200px);
}
.player2Score {
  right: calc(50% - 200px);
}
.startText {
  position: absolute;
  margin: 0;
  top: 50%;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: #03bbf4;
  box-shadow: 4px 10px 4px rgba(0, 0, 0, 0.9);
  border-radius: 5px;
  padding: 15px;
  color: #3e1130;
  text-shadow: 4px 6px 4px rgba(0, 0, 0, 0.3);
}
.vingnett {
  height: 100dvh;
  width: 100dvw;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 1) 100%
  );
}
