@charset "UTF-8";

/* headings */
h1 {
    font-size: 2.375em; /* = 38px */
    margin-bottom: .5em;
    margin-top: .5em;
}

h2 {
    font-size: 2.250em; /* = 36px */
    margin-bottom: .75em;
    margin-top: .75em;
}

h3 {
    font-size: 1.875em; /* = 30px */
    margin-bottom: .857em;
    margin-top: .857em;
}

h4 {
    font-size: 1.375em; /* = 22px */
    margin-bottom: 1em;
    margin-top: 1em;
}

h5 {
	font-size: 1.125em; /* = 18px */
	margin-bottom: 1.125em;
	margin-top: 1.125em;
}

h6 {
	font-size: 1.000em; /* = 16px */
	margin-bottom: 1.285em;
	margin-top: 1.285em;
}

.h5kontakt{
	font-size: 1.125em; /* = 18px */
	margin-bottom: 1.125em;
	margin-top: 1.125em;
	margin-left:2.5rem;
}


html{
    scroll-behavior: smooth;
    background-color: #f5deb3;
}

/* Navigation */
.site-nav {
    background-color: #800000;
    color: #ffffff;
    max-width: 100%;
    position: sticky;
    top: 0;
    padding: 1rem 5rem;
    margin-bottom: 1rem;
}

.site-nav ul{
    display: flex;
    flex-flow: row;
    list-style-type: none;
    padding: 1rem;
    margin: 0;
}

.site-nav li {
    display: inline;
    padding: 0;
    margin: 0;
}

.site-nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 1rem;
}

.site-nav a:focus{
    color: #ffffff;
    background-color: #a00000;
    outline: .1rem solid #800000;
}

.site-nav a:hover{
    color: #ffffff;
    background-color: #a00000;
}

.current a{
    color: #ffffff;
    background-color: #660000;
}


/* body */
body {
    background-color: #f5deb3;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, Verdana, sans-serif;
    font-size: 0.75rem;
    overflow: auto;
    color: #000000;
    max-width: 85%;
    display: flex;
    flex-flow: column;
    min-height: 100vh;
    margin: auto;
}

/* header*/
.site-header {
    background-color: #f5deb3;
    max-width: 100%;
    padding: 0;
    height: auto;
}

.site-header img {
    width: 100%;
    height: auto;
}

.site-header a{
    text-decoration: none;
    color: #800000;
}
/* main*/
main {
    background-color: #fff8dc;
    color: #000000;
    max-width: 100%;
    text-align: left;
    flex: 1;
    padding: 1rem 2.5rem 1rem 2.5rem;
    margin-top: .5rem;
    margin-bottom: .5rem;
}

main a{
    color: #0000ff;
    text-decoration: none;
}

main a:focus{
    color: #5a005a;
    outline: .5rem solid #fff8dc;
}

main a:hover{
    color: #5a005a;
}

main a[target="_blank"]::after{
    content: url(../button/externallink.svg);
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-left:.2rem;
}

figure{
    margin-left: 0;
}

address{
    font-style: normal;
    line-height: 1.5rem;
    padding: 0;
    margin-left: 2.5rem;
}

img {
    width: min(100%, 360px);
  }

p{
    word-wrap: normal;
    line-height: 1.5rem;
}
/* footer*/
.site-footer {
    background-color: #800000;
    color: #ffffff;
    font-size: 0.75rem;
    max-width: 100%;
    padding: 1rem 3rem 1rem 3rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.site-footer a {
    text-decoration: none;
    color: #dfaea3;
}

.site-footer a:focus{
    color: #404040;
    outline: .5rem solid #800000;
}

.site-footer a:hover{
    color: #404040;
}

.site-footer a[target="_blank"]::after{
    content: url(../button/externallinka.svg);
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-left:.2rem;
}

.site-footer ul{
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    list-style-type: none;
    margin: 0;
    padding:0;
}

.site-footer li{
    display: inline;
    flex: 1;
    margin-right: 0;
}

.site-footer img{
    width: .75rem;
    height: .75rem;
}

/* =Lists*/
ul{
    list-style-type: disc;
    line-height: 1.5rem;
}


.list-impressum ul{
    list-style-type: none;
    line-height: 1.5rem;
}

.first{
    text-align: left;
}

.second{
    text-align: center;
}

.last{
    text-align: right;
}

/* Horizontal Rule*/
hr {
	background: #555753;
	height: .1rem;
	max-width: 100%;
	border: none;
}

/*Table*/
table{
    display: table;
    border-collapse: collapse;
    width: 100%;
    white-space: normal;
}

thead{
    background-color: #f5deb3;
    width: 100%;
}
tbody{
    background-color: #fff8dc;
    width: 100%;
}
    
tfoot{
    background-color: #fff8dc;
}

th, td, tr{
    text-align: left;
    vertical-align: top;
    padding: .5rem 0 .5rem 0;
}

td:last-child {
	width: 65%;
}


