body {
    margin: 0;
    overflow: hidden;
    background-color: black;
  }
  
  div {
    position: absolute;
    border-radius: 50%;
  }
  
  #infoOverlay {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  
  .game-over {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: red;
    font-family: 'Arial', sans-serif;
    font-size: 2em;
    display: block;
    text-align: center;
    white-space: pre-line;
    z-index: 1000;
    font-weight: bold;
  }
  
  .game-over .normal-text {
    font-family: Arial, sans-serif;
    font-size: 1em;
    color: white;
  }
  
  .game-over .time-text {
    color: yellow;
  }
  
  .game-over .restart-text {
    color: #00FF00;
  }
  
  .press-start {
    text-align: center;
    margin-top: 20px;
    pointer-events: none;
  }
  
  .title-container {
    padding: 2rem 3rem;
    min-width: 350px;
  }

  .player2-dot {
    position: absolute;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: #ffa500;
    z-index: 1000;
  }

  .player3-dot {
    position: absolute;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: #00ff00;
    z-index: 1000;
  }
  
  