body {
   font-family: "Courier New", Courier, monospace;
    color:#f4f4e6;
    background-color: #303133;
    font-size: clamp(1.5rem, 5vw, 1.5rem);
}
p {
    font-size: clamp(1.5rem, 5vw, 1.5rem);
}
.wrapper-nav {
   font-family: Inter, Arial, Helvetica, sans-serif;
}
.bild-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.88);
    justify-content: center;
    align-items: center;
}

.bild-overlay.aktiv {
    display: flex;
}

.bild-container {
    position: relative;
    max-width: 95vw;
    max-height: 90vh;
}

.bild-overlay-inhalt {
    max-width: 95vw;
    max-height: 90vh;
    display: block;
}

.bild-schliessen {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 34px;
    color: white;
    cursor: pointer;
    background: rgba(0,0,0,0.6);
    padding: 6px 12px;
    border-radius: 50%;
}