:root {
    font-family: Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-mono: 'Fira Mono', monospace;
    --accent-color: #F7724F;
    --border-color: #dddddd;

    --color-positiv: #349651;
    --color-negativ: #d70000;

    --heading-color: rgba(0, 0, 0, 0.7);
    --text-color: #444444;
    --column-width: 42rem;
    --column-margin-top: 4rem;
    --background: #f3f3f3
}

html {
    overflow-y: scroll;
    height: 100%;
}

body {
    margin: 0;
    background: var(--background);
    height: 100%;
}

h1,
h2,
p {
    font-weight: 400;
    color: var(--heading-color);
}

p {
    line-height: 1.5;
}

a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1rem;
}

pre {
    font-size: 16px;
    font-family: var(--font-mono);
    background-color: rgba(255, 255, 255, 0.45);
    border-radius: 3px;
    box-shadow: 2px 2px 6px rgb(255 255 255 / 25%);
    padding: 0.5em;
    overflow-x: auto;
    color: var(--text-color);
}

input,
button {
    font-size: inherit;
    font-family: inherit;
}

button:focus:not(:focus-visible) {
    outline: none;
}

input {
    border: 1px solid #dddddd;
}

.panel {
    background: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 720px) {
    h1 {
        font-size: 2.4rem;
    }
}

.text-positive {
    color: var(--color-positiv)
}

.text-negative {
    color: var(--color-negativ)
}

.text-hint {
    color: #575757a8;
}


.text-align-right {
    text-align: right !important;
}

.text-align-left {
    text-align: left !important;
}

button {
    background: var(--accent-color);
    color: #fff;
    padding: 0.4rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border: 1px solid white;
}

button:hover {
    background: #fff;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    cursor: pointer;
}