html,
body {
    margin: 0;
    padding: 0;
    --theme-color: #c70f0f;
    --block-accent-color: var(--theme-color);
}

html,
body,
input,
button,
textarea {
    font-size: 1rem;
    font-family: 'Inconsolata', 'Menlo', 'Monaco', 'Courier', monospace;
}

textarea {
    resize: none;
    border: 0;
    height: 100%;
    width: 100%;
    padding: .4em .6em;
    box-sizing: border-box;
    line-height: 1.4em;
}

.mobile {
    display: none;
}

@media only screen and (max-width: 600px) {
    .mobile {
        display: initial;
    }
    .desktop {
        display: none;
    }
}

