* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    min-height: 100dvh;
    padding-top: 100px;
}

.main {
    max-width: 1200px;
    display: flex;
    width: 100%;
    align-items: center;
    flex-flow: column wrap;
    padding: 25px;
}

.main p {
    width: 100%;
    text-align: justify;
}


p {
    font-size: 1.2em;
}

@media (max-width: 933px) {
    .last {
        width: 100%;
    }
}
@media (max-width: 600px) {
    p {
        font-size: 1em !important;
    }
}

.patrons {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 10px;
    flex-wrap: wrap;
    gap: 40px;
    column-gap: 60px;
}

.patron {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* obrazek u góry + napis na dole */
    align-items: center;
    min-width: 200px; /* dla responsywności */
}

.patron img {
    max-width: 250px;
    max-height: 200px;
    height: auto;
    object-fit: contain;
    flex: 1; /* obrazek zajmuje całą dostępną przestrzeń */
    display: flex;
    align-items: center; /* centrowanie pionowe w obszarze */
    justify-content: center;
}

.patron p {
    text-align: center;
    font-size: 1.1em;
    margin-top: 30px;
}



.page-title h1 {
    margin-top: 1em;

    font-size: 2.8rem;
    margin-bottom: 1.2em;
    text-align: center;

}



@media (max-width: 400px) {
    h1 {
        font-size: 2.3rem !important;
    }
}







