/* styles.css */

body {
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #333;
    font-family: 'Press Start 2P', cursive;
}

canvas {
        border: 1px solid #000;
        display: block;
        margin: 20px auto;
    }


#buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: absolute;
    z-index: 1;
}

button {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Press Start 2P', cursive;
}
