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

.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

canvas {
    background-color: #000;
    border: 2px solid #fff;
}

.controls {
    margin-top: 20px;
    text-align: center;
}

p {
    margin: 5px 0;
} 