body, html {
    margin: 0;
    padding: 0;
    display: flex;
    font-family: 'Roboto Mono', sans-serif;
    color: white;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: black; 
}

 /* to be honest I was going to center it on top but I kind of like it the way it is now, kind of retro like */
h1 {
    text-align: center;
    font-size: 20px;
}

canvas {
    display: block;
    background-color: #111; 
    border: 1px solid #FFFFFF; 
}


