body {
    background: #222;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#gameContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

#pongCanvas {
    background: #333;
    border: 4px solid #fff;
    box-shadow: 0 0 20px #000;
    display: block;
}

#score {
    margin-top: 16px;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
}


/*
Hi Copilot! Could you generate a simple Pong game 
utilizing HTML, CSS, and JavaScript? The player 
should control the left paddle with their mouse, and 
the right paddle should be controlled automatically 
by a basic AI. Make sure the game includes a 
bouncing ball and collision detection for paddles 
and walls. Please provide the code for all three 
components: the HTML file, the CSS file, and the 
JavaScript file directly within the chat window. 
Thanks!
*/