
:root
{
    --bg: #101820;
    --fg: #FEE715;
}

@font-face {
    font-family: "terminal";
    src: url("files/GPN.ttf");
}

body
{
    background-color: var(--bg);
}
#main
{
    color: var(--fg);
    font-size: 18px;

    font-family: 'Courier New', Courier, monospace;
    /* font-family: "Ubuntu Mono", monospace; */
    
    font-weight: 400;
}
#pwd-header
{
    font-weight: 650;
}
#cmd-container
{
    width: 100%;
    overflow-wrap: break-word;
}
#stdout
{
    white-space: pre;
}
#cmd:focus
{
    outline:none;
}