body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(255, 255, 255);
}

.navbar {
    background-color: #808080; 
    height: 100px;             
    display: flex;
    align-items: center;       
    justify-content: space-evenly; 
    padding: 0 50px;
}

.nav-item {
    text-decoration: none;
    color: black;
    font-size: 24px;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #dacdcd;
}

.content {
    padding: 40px;
    text-align: center;
}

.tekst{
    display: flex;
    justify-content: center;
}

.gallery{
    display: flex;         
    justify-content: center; 
    gap: 10px;                   
}
.zdj{
    width: 500px;           
    border-radius: 10px;
    
}

.zdj img{
    width: 80%;             
    height: 450px;           
    object-fit: cover;       
    border-radius: 10px;
}