@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: "Nunito", sans-serif;
    overflow: hidden;
}
body{
    background-color: black;
}
#player1{
    background: white;
    width: 1%;
    height: 30%;
    position: absolute;
    left: 0;
}
#player2{
    background: white;
    width: 1%;
    height: 30%;
    position: absolute;
    right: 0;
}
.ball{
    background-color: white;
    width: 5%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    position: absolute;
}
.score{
    position: absolute;
    font-size: 40px;
    color: white;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.arrow{
    width: 100px;
    height: 100px;
    color: white;
    position: absolute;
    opacity: 0;
}
#up{
    position: absolute;
    top: 10px;
}
#down{
    position: absolute;
    bottom: 10px;
}

.gameover{
    margin: 10% auto;
    width: 30%;
    height: 10%;
    background-color: rgba(240, 248, 255, 0.713);
    font-size: 50px;
    text-align: center;
    border-radius: 15px;
    padding: 10px;
}

.gameover button {
  background: #5E5DF0;
  border-radius: 999px;
  box-shadow: #5E5DF0 0 10px 20px -10px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  font-family: Inter,Helvetica,"Apple Color Emoji","Segoe UI Emoji",NotoColorEmoji,"Noto Color Emoji","Segoe UI Symbol","Android Emoji",EmojiSymbols,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans",sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  opacity: 1;
  outline: 0 solid transparent;
  padding: 8px 18px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  word-break: break-word;
  border: 0;
}

.ct-animate-blink {
    animation: blink 1.5s infinite;
    animation-fill-mode: both;
    }
 
 @keyframes blink {
    0% { opacity: 0 }
    50% { opacity: 1 }
    100% { opacity: 0 }
    }