html, body{
    margin: 0;
    padding: 0;
    background: #111;
    height: 100%;
}

body *{
    font-family: 'Roboto Mono', monospace, sans-serif !important;
    font-size: 12px;
    color: #fff;
    cursor: default;
}

body.light{
    background: #fafafa;
}

body.light *{
    color: #222;
}

.container{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.links{
    width: 100%;
    text-align: center;
}

.links a{
    text-decoration: underline;
    cursor: pointer;
}

.input{
    display: none;
}

.input input{
    flex-grow: 1;
    background: none;
    border: none;
    outline: none;
}

#textarea{
    width: 100%;
    background: none;
    border: none;
    resize: none;
    outline: none;
}

.footer{
    position: fixed;
    width: 100%;
    height: 50px;
    bottom: 0;
    left: 0;
    line-height: 50px;
    text-align: center;
}

.footer p{
    margin: 0;
}

.footer span{
    color: #EA3D2F;
}

@media (max-width: 600px) {
    body *{
        font-size: 8px;
    }
    .footer p{
        font-size: 10px;
    }
}