body {
    background-color: #0d1117;
    font-family: monospace, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: #1d2634;
}

::-webkit-scrollbar-thumb {
    background: #3f577c;
}

pre {
    color: #1fee00;
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    justify-content: center;
}

#commands {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-top: 3%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: left;
}

#command {
    background-color: #0d1117;
    color: white;
    border: none;
}

#command:focus {
    outline: none;
}