* {
    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;
}

#phrase-holder {
    display: block;
    position: relative;
    /* width: 1200px; */

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

    /* This centers our sketch vertically. */
    align-items: center;
}
#phrase-holder .phrase {
    /* text-align: justify;
    text-justify: distribute;
    width: 100%; */
    /* display:inline-block; */
	text-align: justify;
	text-align-last: justify;
	/* letter-spacing: 0.1em; */
    color: white;
    font-family: monospace, 'Courier New', Courier;
}

.phrase:after {
  content: '';
  display:inline-block;
  width: 100%;
}