@media (min-width: 801px) {
    .container, header, footer {
        max-width: 800px;
    }
}

:root {
    --link-color: #509950;
    --link-bg: #204020;
}

html {
    font-size: 22px;
    background-color: black;
    color: #779977;
}

body {
    margin-bottom: 60px;
    font-family: "Jura", sans-serif;
}

.header-container, .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container, header, footer {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

header, footer {
    padding: 0 10px;
}

.container {
    padding: 10px;
}

.logo {
    /*border-radius: 5px;*/
    /*padding: 5px 10px;*/   
    color: #66ff66;
    font-size: 2.5em;
    
    /*border-top: 3px dotted var(--link-color);*/
    /*border-bottom: 3px dotted var(--link-color);*/
    /*background-color: var(--link-bg);*/
    text-shadow:  #33aa33 0 0 20px;
}

.img-max {
    max-width: 1000px;
    width:100%;
    border-radius: 10px;
    border: 1px dashed;
    box-shadow: var(--link-bg) 0 0 50px;
    margin: 20px 0;
}

h1,h2,h3,h4,h5,h6 {
    color: #33aa33;
    padding: 4px 0 8px 0;
    border-top: 4px dotted var(--link-color);
    border-bottom: 4px dotted var(--link-color);
    text-shadow:  #33aa33 0 0 20px;
}

.footer-container {
    color: var(--link-bg);
    padding: 4px 0;
    border-top: 4px dotted var(--link-bg);
}

p {
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    text-align: justify;
    /*text-indent: 3em;*/
    text-shadow:  #006600 0 0 10px;
}

.sign {
    text-align: right;
    font-style: italic;
}

.page-meta-data {
    text-align: right;
    font-style: italic;
    color: #304030;
}

a {
    color: var(--link-color);
    border: 1px solid transparent;
    padding: 5px;
}

a:hover {
    border: 1px solid var(--link-color);
    background-color: var(--link-bg);
}

a, a:hover, a:visited, a:active {
    text-decoration: none;
}

textarea {
    min-height: 400px;
}

.form-control {
    width: 100%;
}

.form-control, button, input {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 18px;
    border-radius: 5px;
    color: var(--link-color);
    border: 1px solid var(--link-color);
    background-color: var(--link-bg);
}

input[type="submit"]:hover, input[type="checkbox"]:hover {
    border: 1px solid white;
    background-color: var(--link-color);
    color: white;
}