* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #222;
    font-family: Arial, sans-serif;
    color: white;
}

#game-container {
    text-align: center;
}

#gameCanvas {
    background-color: #000;
    display: block;
    margin: 0 auto;
}

#score {
    font-size: 24px;
    margin-top: 10px;
}
