/* Vereinbarung der Variablen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --black: #000000;
    --baseballdarkgreen: #0f3d2e;
    --originaltreefoxdarkgreen: #193C23;
    --contrastcolor: #AB2E7F;
}

/* P-Generation */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

/* F1-Generation */
footer {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 25px 6%;
}

/* F2-Generation */
.section {
    padding: 25px 6%;
}

.section.white {
    background-color: var(--white);
}

.section.green {
    background-color: var(--baseballdarkgreen);
    color: var(--white);
}

/* F3-Generation */
h1 {
    font-size: 1.8rem;
    margin-bottom: 0px;
    font-weight: 600;
}

h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 600;
}

p {
    font-size: 1rem;
    /* max-width: 700px;*/
    font-weight: 400;
}

a {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--contrastcolor);
    text-decoration: none;
}

a:hover {
    color: var(--black);
}

/* Tabellen-Generation */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    overflow-x: auto;
    display: block;
}

th,
td {
    border: 2px solid var(--baseballdarkgreen);
    padding: 10px;
    text-align: left;
    white-space: nowrap;
}

th {
    font-weight: bold;
}

/* Sonderanpassungen */

/*   Tablet bzw. ab 768px */
@media (min-width: 768px) {
    .section {
        padding: 35px 10%;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    p {
        font-size: 1.05rem;
    }

    table {
        display: table;
    }
}

/* Desktop bzw. ab 1200px */
@media (min-width: 1200px) {
    .section {
        padding: 50px 15%;
    }

    h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 1.1rem;
    }
}

/* Logo */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

.header-container img {
    height: 100px;
}

        .footer-logo-container {
            display: flex;
            justify-content: flex-end;
            padding: 0px;
            padding-right: 6%;
        }

        .footer-logo-container img {
            height: 150px;
        }