:root {
    --c1: #0F8276;
    --c2: #ffffff;
    --c3: #076B60;
    --header-height: 70px;
    --footer-height: 50px;
    --margin-header-content: 20px;
    --bg-color: var(--c2);
}

body {
    background: var(--bg-color);
}

.space20px {
    height: 20px;
    min-height: 20px;
    max-height: 20px;
}

.space12px {
    height: 12px;
    min-height: 12px;
    max-height: 12px;
}

header {
    z-index: 100;
    position: fixed;
    top: 0;
    height: var(--header-height);
    width: 100%;
    /*
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    */
    border: 2px solid var(--c3);
    background-color: var(--c1);
}

.my-container {
    margin-top: var(--header-height);
    margin-bottom: var(--footer-height);
    overflow-y: auto;
    min-height: calc(100vh - var(--footer-height) - var(--header-height));
    max-height: calc(100vh - var(--footer-height) - var(--header-height));
    height: calc(100vh - var(--footer-height) - var(--header-height) - var(--margin-header-content) - var(--margin-header-content));
    border: 1px solid var(--c3);
}

footer {
    position: fixed;
    bottom: 0;
    z-index: 100;
    height: var(--footer-height);
    width: 100%;
    background-color: var(--c3);
    /* DONT CHANGE*/
    text-align: center;
}

footer span {
    color: var(--c2);
}

footer span.name {
    position: relative;
    font-size: 1.4em;
    top: 10px;
}

footer span.credits {
    position: relative;
    float: right;
    font-size: 0.8em;
    top: calc(var(--footer-height) - 25px);
}

.main-h1 {
    text-align: center;
    color: var(--c2);
}

textarea {
    resize: none;
}

#outTextArea {
    background-color: #f6f6f6;
}

.content-row {
    min-height: 200px;
}

/*col-md*/

@media (min-width: 992px) {
    #schmottButto {
        position: relative;
        top: 40%;
    }
    #schmcountP {
        position: relative;
        top: 65%;
    }
    textarea.my-text-area {
        min-height: 350px;
        height: calc(100vh - var(--footer-height) - 20px - 20px - var(--header-height) - 2px);
        /*viewport - footerheight - headerheight- 2* space 20px - idk why 2px */
    }
    /* rows equal height */
    .row-eq-height {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

@media not all and (min-width:992px) {
    textarea.my-text-area {
        min-height: 200px;
    }
    #schmcountP {
        margin-top: 10px;
    }
}

#schmcountP {
    text-align: center;
}