* {
    padding: 0px;
    margin: 0px;
    background-color: black;
}
#sketch-holder {
    display: flex;
    max-width: 100%;

    /* This centers our sketch horizontally. */
    justify-content: center;

    /* This centers our sketch vertically. */
    align-items: center;
    padding-top: 20;
}

#sketch-holder canvas {
    border-color: white;
    border-width: 1px;
    border-style: solid;
}

#info {
    display: flex;

    /* This centers our sketch horizontally. */
    justify-content: center;

    /* This centers our sketch vertically. */
    align-items: center;
    width: 860px;
    border-color: white;
    border-width: 1px;
    border-style: solid;
    border-top-style: none;
    align-content: center;
    padding-top: 10;
    padding-bottom: 10;
    margin: 0 auto;
}
 #info h1 {
     color: white;
     font-family: monospace;
 }
