body{
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
a{
    color: currentColor;
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}
article{
    margin-inline: 2em;
}
h1{
    font-size: 26pt;
}
.lead{
    margin-top: 1em;
    font-family: 'Times New Roman', Times, serif;
    font-size: 22pt;
    font-weight: 700;
}
.baner{
    margin-top: 2em;
    width: 80vw;
    height: 400px;
    background-image: url('../img/pies2.webp');
    border-radius: 20px;
    border: 3px solid black;
    background-size: cover;
    background-position: center;
}
.content{
    font-size: 16pt;
    line-height: 1.5em;
    width: 60vw;
    padding-left: 1em;
    display: flex;
    flex-direction: column;
}
.zdj a{
    display: block;
    font-size: 12pt;
    color: gray;
}
.sociale{
    position: sticky;
    margin-top: 1em;
    width: 300px;
    background: #11A16E;
    padding: 1em;
    border: 3px solid black;
    border-radius: 10px;
    font-size: 22pt;
    /* display: inline-block; */
}
.sociale ul{
    list-style: none;
}
.linia{
    display: flex;
    justify-content: space-between;
}

@media(max-width: 1000px){
    article{
        margin: 1em;
        width: calc(100vw - 3em);
    }
    .baner{
        width: 100%;
    }
    .content{
        width: 100%;
        padding: 0;

    }
    .zdj{
        max-width: 80vw;
    }
    .content img{
        max-width: 80vw;
    }
    .linia{
        display: block;
    }
}