body {
    font-family: -apple-system,BlinkMacSystemFont,segoe ui,Roboto,Oxygen,Ubuntu,Cantarell,open sans,helvetica neue,sans-serif;
    font-size: 18px;
    line-height: 1.6;
    word-break: break-word;
    background: rgb( 30, 30, 30 );
    color: rgb( 196, 196, 197 );
}

textarea:focus {
    outline: none;
}

.header {
    position: relative;
    max-width: 960px;
    margin: auto;
    padding: 8px;

    font-size: 2.4rem;    
    font-weight: bold;      
}

.main {
    position: relative;
    max-width: 960px;
    margin: auto;
    padding: 4px;
}

button.default-button,
input[type=button].default-button, 
input[type=reset].default-button
{
    background: rgb( 24, 24, 24 );
    color:rgb( 196, 196, 197 );
    border: 1px solid rgb( 196, 196, 197 );
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 1.5rem;
}

button.default-button:hover,
input[type=button].default-button:hover, 
input[type=reset].default-button:hover
{
    background: rgb( 48, 48, 48 );
    color:rgb( 196, 196, 197 );
    border: 1px solid rgb( 196, 196, 197 );
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 1.5rem;
}

.editor-container {
    width:100%;
    box-sizing:content-box;
}

.input-caption {
    display: inline-block;
    padding: 0 8px 0 8px;
    margin: 4px 0 4px 0;
}

.input-frame {
    font-family: Menlo, Monaco, 'Courier New', monospace, -apple-system,BlinkMacSystemFont,segoe ui,Roboto,Oxygen,Ubuntu,Cantarell,open sans,helvetica neue,sans-serif;
    padding: 8px 12px 8px 12px;
    border-radius: 4px;
    font-size: 1.1rem;
    margin: 4px 0 4px 0;

    background: rgb( 24, 24, 24 );
    color: rgb( 196, 196, 197 );
    border: solid 1px  rgb( 48, 48, 49 );
}

.input-frame::placeholder {
    color: rgb( 96, 96, 96 );
}

.editor {
    width:100%;
    min-height:600px;
    height: calc( 100% - 240px );

    tab-size:4;
}

video {
    max-width: 100%;
    height:auto;
}