
html {
	color-scheme: dark;
    scroll-behavior: smooth;
}
body {
    width: 100%;
    padding: 0;
    margin: 0;

	font-family: Tahoma, Verdana, Arial, sans-serif;
    font-size: 20px;

    background-color: rgb(28, 27, 34);
    color: white;
}
a {
    color: rgb(0, 150, 110);
}
.navbar {
    width: 100%;
    padding-top: 0.6em;
    padding-bottom: 0.6em;
    background-color: black;

    position: sticky;
    top: 0;
    
    display: inline-flex;
    flex-direction: row;
}
.navbutton {
    width: 100%;
    flex-grow: 1;
    text-align: center;
}
.footer {
    width: 100%;
    text-align: center;
    padding-top: 1em;
    padding-bottom: 2em;
    background-color: rgb(20, 19, 25);
}
.content {
	max-width: 40em;
    margin: auto;

	line-height: 2;
    text-align: justify;
    text-justify: inter-word;
}
.banner {
    width: 100%;
    padding-top: 5em;
    padding-bottom: 5em;
    margin-bottom: 4em;

    color: white;
    text-align: center;

    background-image: url("/assets/banner.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0em -2em 5em #222222;
}
.banner h1 {
    text-shadow: 4px 4px #222222;
    letter-spacing: 0.25em;
	font-family: \'Courier New\', monospace;
}
.banner h3 {
    text-shadow: 1px 1px #222222;
}
h2 {
    font-size: 50px;
    line-height: 1;
}
.softpage {
    display: block;
    min-height: 80vmin;
    padding-bottom: 4em;
}
.logo {
    max-width: 1.2em;
    max-height: 1.2em;
    display: inline-block;
    vertical-align: text-bottom;
}
.logo img {
    width: 100%;
    height: 100%;
}
.impressum {
    text-align: center;
    font-size: 14px;
}
.listing td {
    padding: 0 1em;
}
.listing {
    background-color: rgb(20, 19, 25);
}
.listing tr:nth-child(even) {
    background-color: rgb(35, 36, 42);
}
