:root {
    --bodyBackgroundImage: url("../../img/background.jpg"); 
    --containerBackgroundColor: rgba(255, 255, 255, 1);
    --containerFontSize: calc(7px + 0.4vw);
    --containerHeight: calc(100vh - var(--navHeight));

    --sektionBackgroundColor: rgba(255, 255, 255, 0.2);
    --sektionColor: #006168;
    --sektionBaseFontSize: calc(13px + 0.8vw);
    --sektionFont: "Klee One";
}

body {
    margin: 0;
    width: 100vw;
    max-width: 100vw;
    color : rgb(61, 61, 61);
    height: 100vh;
    max-height: 100vh;
    height: -webkit-fill-available;
    max-height: -webkit-fill-available;
}
.container {
    position: fixed;
    top : var(--navHeight);
    height: var(--containerHeight);
    max-height : var(--containerHeight);
    width: 100vw;
    max-width: 100vw;
    overflow-y : auto;
    font-family: var(--sektionFont);
    font-size: var(--containerFontSize);
    background-color: var(--bodyBackgroundColor);
    background-image: var(--bodyBackgroundImage);
    background-size: cover;
    background-position: center top;
    box-sizing: border-box;
}
.sektion {
    box-sizing: border-box;
    padding : 20px;
    font-size: var(--sektionBaseFontSize);
    color: #01474d;
    width: 90%;
    margin-left: 5%;
    background-color: var(--sektionBackgroundColor);
    backdrop-filter: blur(20px);
    font-family: var(--sektionFont);
}
.sektion-container-flex {
    display: flex;
    justify-content: space-around;
}
.sektion-container-center {
    text-align: center;
    white-space: pre-line;
}
.nopad {
    padding : 0px !important;
    background-color: rgba(0, 97, 104, 0.7) !important;
}
.border-section {
    border-top: 4px solid rgb(1, 71, 77);
}


.end-sektion-container {
    padding: 1rem 0rem 0rem 0rem;
    box-sizing: border-box;
}
.end-sektion-row {
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: fit-content;
}
.end-sektion-column {
    position: relative;
    flex : 50%;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    font-size: calc(var(--sektionBaseFontSize) + 5px);
    padding: 2vw;
}
.kontakt-row {
    flex: 80%;
    max-width: 80%;
    display: flex;
    justify-content: start;
}
.kontakt-column-icon {
    flex: 10%;
    max-width: 10%;
}
.kontakt-column-text {
    padding-left: 5px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    color: white;
    font-size: calc(var(--sektionBaseFontSize) - 4px);
}
.kontakt-icon {
    width: 100%;
    height: auto;
}
.end-sektion-logo {
    flex: 60%;
    max-width: 60%;
    border-radius: 5px;
}
.end-sektion-image {
    width: 40%;
}