:root {
    --primary: #ffffff;
    --secondary: #653900;
    --secondary-bright: #fabb3f;
}

* {
    box-sizing: inherit;
}

body {
    height: 100%;
    background-image: url(/static/img/hintergrund.png);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

html {
    height: 100%;
    box-sizing: border-box;
}

.wrapper {
    min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
}

#frame {
    overflow: hidden;
    position: relative;
}

#content {
    color: var(--primary);
    font-size: 15pt;
}

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

a:hover {
    text-decoration: none;
    color: var(--secondary-bright);
}

h1, h1 a {
    text-align: center;
    font-weight: bold;
    font-size: 40pt;
    color: var(--primary);
    font-family: Impact, 'Arial Black', 'Franklin Gothic Bold', sans-serif;
}

h2,h3,h4,h5,h6 {
	font-weight: bold;
    font-size: 25pt;
    font-family: Impact, 'Arial Black', 'Franklin Gothic Bold', sans-serif;
}

p + p, ul + p {
}

ul {
	margin: .6em 0;
}

#footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    clear: both;
    padding-bottom: 15px;
    padding-top: 25px;
}

#image-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#image-row img {
    padding: 15px;
}

#footer-navbar {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    text-align: center;
}
