/* Grundlegende Einstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Text allgemein im Blocksatz */
body {
    text-align: justify;
}

/* Bild im Header */
.header-bild {
    width: 100%;
    height: auto;
}

/* Navigation */
nav {
    background-color: #FF0707;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding: 10px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Sektionen */
section {
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
}

section h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

section p, section img {
    font-size: 1em;
    line-height: 1.6;
}

/* Sponsoren-Bild */
section img {
    max-width: 100%;
    height: auto;
}

/* Kontakt-Text zentriert */
#kontakt p {
    text-align: center;
}

/* Kontakt Tabelle */
.kontakt-tabelle {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
}

.kontakt-tabelle td {
    padding: 8px;
    vertical-align: top;
}

.kontakt-tabelle td:first-child {
    text-align: right; /* Text in der linken Spalte rechtsbündig */
    font-weight: bold;
}

.kontakt-tabelle td:last-child {
    text-align: left; /* Text in der rechten Spalte linksbündig */
}

.qr-code {
    width: 100px;
    height: auto;
    min-height: 200px;
    min-width: 200px;
}

.header-qr {
    text-align: right;
}

.text-center {
    text-align: center;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(to right, #ff0707, white);
    color: white;
    padding: 15px;
    font-size: 1em;
}
