body, html, main {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
}

main {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#output {
    background-color: #333;
    color: #fff;
    font-family: monospace;
    padding: 0.5rem;
    height: 100%;
    white-space: pre;
    overflow: auto;
}

#inputblock {
    width: 100%;

    background-color: #222;
    position: relative;
}

#stopper{
    bottom: 0px;
    position: absolute;
    width: 100%;
    top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#stopper button {
    background-color: #3d0a0a;
    color: #fff;
    border: 0px;
    padding: 5px;
}

#loader {
    position: absolute;

    margin: auto;
    height: 24px !important;
    width: 24px !important;
    left: 50%;
    top: 2px;

    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#commandinput {
    width: 100%;
    padding: 0.5rem;
    background-color: #222;
    color: #fff;
    font-family: monospace;
    border: 0px;
    border-top: 1px solid #111;
}