@font-face {
    font-family: RobotoBold;
    src: url(fonts/Roboto-Bold.ttf);
}
@font-face {
    font-family: Roboto;
    src: url(fonts/Roboto-Regular.ttf);
}


:root {
    --color-primary: #0073ff;
    --color-primary_second: #72affa;
    --color-white: #ffffff;
    --color-black: #141d28;
    --color-black-1: #212b38;
    --color-blue: #052996;
}

body {
    background-color: var(--color-primary);
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh; 
    text-align: center;
}

header,
footer {
    background-color: var(--color-primary);
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 30px;
}

header {
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    height: 25px;
    line-height: 25px;
}

figcaption {
    text-align: center;
    font-style: italic;
    margin-top: 5px;
}

.logo {
    margin-left: 30px;     /* Schiebt das Logo nach rechts */
    height: 45px;          /* margin-right: 50px;  */
}

.logo-bergquelle img {
    height: 100%;
}

nav {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-left: auto;
    padding-right: 50px;
}

footer {
    bottom: 0;
    justify-content: center;
    gap: 20px;
    height: 25px; /* Höhe für den Footer */
    line-height: 18px; /* Zentriert den Text vertikal */
}

nav button,
footer button {
    background: var(--color-blue);
    color: white;
    border: 2px solid;
    border-radius: 9px;
    padding: 10px;
    cursor: pointer;
    margin: 5px;
}

nav button:hover,
footer button:hover {
    background: rgb(0, 185, 55);
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    /* margin-bottom: 0px; */
}

iframe {
    width: 1000%;
    height: 90vh;
    border: none;
    border-radius: 0;
}

h1 {
    font-family: RobotoBold;
    font-size: 40px;
    color: var(--color-white);
    padding: 8px 8px;
    text-shadow: 2px 2px 2px black,
        2px -2px 2px black,
        -2px 2px 2px black,
        -2px -2px 2px black;
}
p {
    margin-top: 1px;
    font-size: 16px;
    color: #333;
    text-align: justify;
}

table {
    width: auto;
    border-collapse: collapse;
    background-color: var(--color-primary_second);
    cursor: pointer;
}

table,
tr,
th,
td {
    text-align: center;
    border: 1px solid black;
}

td {
    padding: 15px;
    text-align: center;
}