.board {
          height: 85vh;
          width: 80vw;
          background-image: linear-gradient(to right, #5c6e91, #839b97);
          border-radius: 14px;
        }

        .ball {
          height: 30px;
          width: 30px;
          border-radius: 50%;
          position: fixed;
          top: calc(50% - 15px);
          left: calc(50% - 15px);
		  background-color: transparent;
		  
        }



.ball_effect {
  height: 30px;
          width: 30px;
		  border-radius: 1000%;
		     position: absolute;
          top: calc(50% - 15px);
          left: calc(50% - 15px);
 

 background: linear-gradient(to top left, yellow 22%,#ffff66 37%, #ffffff 84%);
		  animation: rotate-gradient linear 0.5s infinite;
}

@keyframes rotate-gradient {
  to { transform: rotate(360deg) }
}
        




        .paddle {
          height: 125px;
          width: 20px;

          position: fixed;
        }

        .paddle_1 {
          top: calc(7.5vh + 55px);
          left: calc(10vw + 30px);
        background: linear-gradient(to top left, #3333cc 28%, #cc33ff 82%);
        }

        .paddle_2 {
          top: calc(85vh + 7.5vh - 100px - 55px);
          right: calc(10vw + 30px);
         background: linear-gradient(to top left, #3333cc 28%, #cc33ff 82%);
        }

        .player_1_score {
          height: 80px;
          width: 80px;
          color: #5200cc;
          position: fixed;
          left: 30vw;
          margin-top: 30px;
        }

        .player_2_score {
          height: 80px;
          width: 80px;
          color: #5200cc;
          position: fixed;
          left: 70vw;
          margin-top: 30px;
        }

        .message {
          position: fixed;
          
          height: 10vh;
          width: 30vw;
          color: #c9cbff;
          left: 620px;
          margin: 30px auto auto auto;
        }
		.message2 {
          position: fixed;
         
          height: 10vh;
          width: 30vw;
          color: #c9cbff;
          left: 700px;
          margin: 68px auto auto auto;
        }