
/* HEADER */

    @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');

    *{
       font-family: 'Nunito', 'Poppins', sans-serif; /* Schriftart */ /
    }
 

.header{
    display:flex;
    align-items:center;
    gap:30px;
    padding:15px 40px;
    background:#d8b1bd;
}

.logo img{
    width:60px;
    height:60px;
}

/* NAVIGATION */
.nav-links{
    list-style:none;
    display:flex;
    gap:40px;
    margin:0;
    padding:0;
}

.nav-links a{
    text-decoration:none;
    color:#d86aa4;
    font-size:18px;
}

.nav-links .active{
    padding:8px 15px;
    border-radius:10px;
}

nav a:hover{
    color:white;
}

/* TITEL */
.start{
    text-align: center;
    color: white;
    background: #d86aa4;
    padding: 15px 25px;
    border-radius: 10px;
    margin: 30px auto;
    width: fit-content;
}

/* CONTAINER */
.container{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    max-width:1100px;
    margin:40px auto;
}

/* BOXEN */
.box{
    background:#EAEAEA;
    flex:1 1 calc(33% - 20px);
    border-radius:10px;
    padding:20px;
    text-align:center;
}

.box img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    margin-bottom:10px;
    transition:0.3s;
}

.box img:hover{
    transform:scale(1.03);
}

/* LIGHTBOX */
#lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    justify-content:center;
    align-items:center;
}

#lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}


/* FOOTER */
.footer{
    text-align:center;
    padding:20px;
}

/* HANDY */
@media (max-width:768px){
    .box{
        flex:1 1 100%;
    }
} wie geht es ,dass man immer die Köpfe sieht mache dan code getrennt und lass alles gleich behebe nur den Fehler. ;