body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #000000; /* Preto sólido */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Press Start 2P', cursive;
    color: #00ff00;
}

canvas {
    background: #000000; /* Preto sólido */
    border: 2px solid #00ff00;
    display: block; /* Remove espaço em branco embaixo do canvas */
}

#score {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5em;
    background: #120224; /* Fundo preto para a pontuação */
    padding: 5px 10px;
    border-radius: 5px;
}

#controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

#controls button {
    width: 30%;
    height: 50px;
    font-size: 18px;
}
