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

.gameArea {
  position: absolute;
  width: 600px;
  height: 400px;
  background: rgba(39, 39, 39, 0.6); /* Background color */
  top: 182px; /* height position */
  border: #ff5100 10px solid;
  border-radius: 20px;
  backdrop-filter: blur(35px);
  transform: perspective(1000px) rotateX(45deg) scaleX(0.47) scaleY(0.9); /*transform angle*/
}

.bg {
  /*transforming the screen itself to the board */
  position: absolute;
  height: 1150px;
  z-index: -1;
}

.paddle {
  height: 100px;
  width: 20px;
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 150px; /*height came from screen pixel side*/
}
/* (width)(height)(blur)*/

.paddle1 {
  box-shadow: -5px 10px 1px rgba(0, 0, 0, 0.9);
  border-radius: 5px;
}
.paddle2 {
  right: 0;
  box-shadow: 5px 10px 1px rgba(0, 0, 0, 0.9);
  border-radius: 5px;
}

.ball {
  position: absolute;
  height: 20px;
  width: 20px;
  background: rgba(255, 72, 0, 0.932);
  border-radius: 5px;
  left: 290px;
  top: 190px;
  box-shadow: 4px 10px 1px rgba(0, 0, 0, 0.9);
  z-index: 2;
}

.net {
  position: absolute;
  border-right: 8px rgba(255, 255, 255, 0.5) dashed;
  height: 96%;
  left: calc(50% - 4px);
  top: 2%;
}

.title {
  position: absolute;
  top: 38px;
  font-size: 52px;
  background: rgb(0, 0, 0);
  border: #ff5100 5px solid;
  border-radius: 5px;
  padding: 15px;
}

.score {
  position: absolute;
  top: 227px;
  display: flex;
  width: 150px;
  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: #000000;
  border-radius: 4px;
  padding: 10px;

  border: #ff5100 5px solid;
  border-radius: 5px;
  padding: 15px;
}

.vignett {
  height: 100dvh;
  width: 100dvw;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 1) 100%
  );
}

.zoomOut {
  position: absolute;
  top: 35px;
  font-size: 2px;
  color: rgb(165, 165, 165);
}

.zoomIn {
  position: absolute;
  text-align: center;
  top: 2700px;
  font-size: 350px;
  transform: perspective(1000px) rotateX(45deg) scaleX(0.47) scaleY(0.9); /*transform angle*/
}

/* .cover {
  position: absolute;
  top: -421.5px;
  font-size: 460px;
  color: rgb(226, 226, 226);
} */

.controls {
  position: absolute;
  background: rgb(0, 0, 0);
  border: #ff5100 5px solid;
  text-align: row;
  border-radius: 5px;
  padding: 15px;
  font-size: 20px;
  top: 547px;
  transform: perspective(1500px) rotateX(65deg) scaleX(0.47) scaleY(0.9); /*transform angle*/
}

.backLight {
  position: absolute;
  width: 300px;
  height: 200px;
  background: rgb(255, 255, 255); /* Background color */
  border-radius: 400px;
  font-size: 0px;
  top: 290px;
  transform: perspective(1000px) rotateX(45deg) scaleX(0.47) scaleY(0.9); /*transform angle*/
}
