/* General body styling */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background: #282c34;
    color: white;
    font-family: 'Arial', sans-serif;
}

/* Styling the scoreboard */
#scoreboard {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #f1f1f1;
}

/* Game area styling */
#gameArea {
    position: relative;
    width: 900px;
    height: 600px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Paddle styling */
.paddle {
    width: 10px;
    height: 70px;
    background-color: #ffffff;
    position: absolute;
}

#paddleA {
    left: 20px;
}

#paddleB {
    right: 20px;
}

/* Ball styling */
#ball {
    width: 15px;
    height: 15px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
}

/* Settings menu styling */
#settingsMenu {
    margin-top: 20px;
    text-align: center;
}

#settingsMenu input,
#settingsMenu label {
    font-size: 16px;
    color: #ffffff;
}
