/* styles.css */
body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: rgb(32, 28, 75);
    color: white;
    font-family: Arial, sans-serif;
    position: relative;
}

/* Player Info Styles */
.player-info {
    position: absolute;
    top: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 5px;
    color: white;
    font-size: 14px;
}

/* Position Player 1 (Left) */
#player1-info {
    left: 10px;
}

/* Position Player 2 (Right) */
#player2-info {
    right: 10px;
}

/* Game Canvas */
canvas {
    border: 2px solid white;
}

/* Home Button (Bottom Center) */
#home-button {
    position: absolute;
    bottom: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#home-button:hover {
    background-color: #ddd;
}
