* {
    box-sizing: border-box;
    margin: 0px;
    color: whitesmoke;
    font-family: "Roboto Mono", "Noto Mono", "Inconsolata", "Source Code Pro", "SF Mono", "Consolas", monospace;
    font-size: 18px;
    font-style: normal;
    font-weight: lighter;
}

html,
body {
    margin: 0;
    padding: 0;
    text-align: center;
}

body {
    padding-top: 20px;
    width: 75vw;
    margin: auto;
    background-color: rgb(19, 19, 19);
    color: aliceblue;
}

h1 {
    font-size: 25px;
}

input {
    color: black;
}

.vscode-light h1,
.vscode-light hr,
.vscode-light td {
    border-color: aliceblue;
}

.centered {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gotobutton {
    color: rgb(184, 108, 255);
}

pre {
    text-align: start;
    /* Since CSS 2.1 */
    white-space: pre-wrap;
    /* Mozilla, since 1999 */
    white-space: -moz-pre-wrap;
    /* Opera 4-6 */
    white-space: -pre-wrap;
    /* Opera 7 */
    white-space: -o-pre-wrap;
    /* Internet Explorer 5.5+ */
    word-wrap: break-word;
}