p {
    font-family: 'Roboto';
    font-size: 16px;
    color: #dfdfdf;
    line-height: 23px;
    text-align: justify;
}
.main-content {
    display: flex;
    padding: 100px 0;
    background: transparent;
    width: 100%;
    flex-direction: column;
}
.trenerzy-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 50px;
    justify-content: center;
}
.trenerzy-block {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    max-width: 47%;
    gap: 20px;
}
.trener-heading {
    font-family: "Roboto", sans-serif;
    font-size: 18pt;
    color: #dfdfdf;
    font-weight: 600;
}
.trenerzy-title {
    font-family: "Roboto", sans-serif;
    font-size: 18pt;
    color: #dfdfdf;
    padding: 0 0 50px 0;
    text-transform: uppercase;
    font-weight: 600;
}
@media only screen and (max-width: 800px) {
    .main-content {
        padding-top: 0;
    }
    .trenerzy-block {
        max-width: 90%;
    }
    .trenerzy-title {
        padding-left: 20px;
    }
}