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

#gameCanvas {
    border: 2px solid #4CAF50;
    background-color: #000;
}

.score {
    color: #4CAF50;
    font-size: 24px;
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
}

.snake {
    fill: #4CAF50;
}

.food {
    fill: #ff0000;
}