body {
    height: 100%;
    margin: 0 auto;
    padding: 0 0;
    border: 0px solid transperent;
    background-color: black;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    color: white;
    background: black;    
}

.footer {
    grid-column-start:1;
    grid-column-end:11;
    grid-row-start:4;
    grid-row-end:5;
}

.header {
    grid-column-start:1;
    grid-column-end:11;
    grid-row-start:1;
    grid-row-end:2;
    
    position: sticky;
    bottom: 0px;
    top: 0px;
    background: black;
    /*padding: 0px 0px;*/
    color:white;
}

.fixed-bg {
    background-attachment: fixed;
    background-image: url('../images/logo/logo_20250224_bw.jpg');
    background-size: cover;
    background-repeat: repeat-y;
    background-position: center center;
    /*height: 100%;*/
    width: 100%;
    color: white;
    text-align: center;
    padding: 0;
}


.nav-links {
    grid-column-start:1;
    grid-column-end:11;
    grid-row-start:2;
    grid-row-end:3;

    list-style: none;
    display: flex;
}

.nav-item a {
    display: inline-block;
    padding: 10px 36px;
    text-decoration: none;
    color: white;
    font-size: 2.2em;
}


.grid {
    display: grid;
    
    /* Zeilen */
    grid-template-rows: 90px auto auto 70px;

    /* Spalten */
    grid-template-columns: 10% 10% 10% 10% 10% 10% 10% 10% 10% 10%;
}

/* the main item */
.content {
    grid-column-start:1;
    grid-column-end:11;
    grid-row-start:3;
    grid-row-end:4;
}

.textframe{
    width: 80%;
    height: 100%;
    padding: 0 0;
    background-color: rgba(0,0, 0, 0.7);
    margin: 1em auto;
}

.web-links{
    color: white;
}
