body {
    font-size: large;
    font-weight: 200;
    font-family: "Lobster", serif;
    background-color: #aeff96;
    color: #333;
    margin: 0;
    padding: 0;
}
header {
    background-color: #689c4d;
    color: white;
    padding: 20px;
    text-align: center;
}
header img {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}
nav {
    background-color: #9A6735;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    position: sticky;
    top: 0;
}
nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
    padding: 10px;
}
nav a:hover {
    color: #deb887;
    background-color: rgba(222, 184, 135, 0.2);
}
main {
    padding: 20px;
}
section {
    margin-bottom: 40px;
    background-color: #E6F0DC;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-weight: 100;
}
section img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
}
@media (min-width: 820px) {
    section {
        margin-left: 20%;
        margin-right: 20%;
        font-size: 30px;
    }
    img{
        width: 80%;
        height: auto;
        margin: 30px 0;
    }
    
}
h2 {
    color: #9A6735;
}
footer {
    background-color: #9A6735;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
.zdjecia img{
    width: 200px;
    margin: 0 0;

}
.zdjecia{
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
   
}

.text {
max-height: 80px; 
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
transition: max-height 0.3s ease;
}

.text.expanded {
max-height: none; 
white-space: normal;
}

.toggle-text {
background-color: #9A6735;
color: white;
border: none;
border-radius: 5px;
padding: 10px 15px;
cursor: pointer;
margin: 10px auto 0;
font-size: 16px;
display: block; 
transition: background-color 0.3s ease;
}

.toggle-text:hover {
background-color: #614121;
}

img {
    display: inline-block; /* Ważne dla działania transformacji */
    text-decoration: none; /* Usuwa podkreślenie, opcjonalnie */
    color: #fff; /* Kolor tekstu */
    transition: transform 0.3s ease, color 0.3s ease; /* Płynne przejście */
}

img:active {
    transform: scale(3); 
}

.rolki iframe{
border-radius: 20px;
margin: 5px 5px;
}