html, body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

* {
    padding: 0px;
    margin: 0px;
    color: white;
    font-family: monospace;
    font-size: 1.25rem;
}

body {
    background-color: black;
    display: flex;
    flex-direction: column;
}

#output-parent {
    flex: 2;
    display: grid;
    place-items: center;
}

#code-parent {
    flex: 1;
    text-align: center;
}

@media only screen and (max-width: 572px) {
    #output {
        width: 100%;
    }
}

#output {
    box-sizing: border-box;
    padding: 30px;
}

#code {
    background: none;
    border: none;
    outline: none;
    box-sizing: border-box;
    padding: 7px;
    width: 720px;
    border-radius: 5px;
    background: #0a0a0a;
    
}

#options {
    margin-top: 20px;
}

span {
    white-space: pre;
}

#speed {
    width: 300px;
}

#comment {
    display: block;
    margin-bottom: 20px;
    color: #F24;
    white-space: pre-wrap;
}

#original {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
}

#original a {
    font-size: inherit;
    color: dodgerblue;
}

#original a:visited {
    color: #808;
}