body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Manuale", serif;
    font-style: normal;
    color: var(--brązowy);
}

.sekcja-kontakt {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('assets/image23.jpeg') no-repeat center center/cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.kontakt-info {
    color: #fff;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.kontakt-info h1 {
    margin-bottom: 1em;
    font-size: 3rem;
}

.kontakt-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    margin-top: 1em;
}

.kontakt-info p {
    font-size: 1.5rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kontakt-info img {
    margin-right: 10px;
}


.kontakt-info img.icon {
    width: 30px;
    height: 30px;
    margin-right: 20px;
}



header{
    background-color: var(--biały);
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
}

header > a > img{
    width: 10vw;
    margin: 1em;
}

header > a{
    font-size: 1.5em;
    color: var(--brązowy);
    text-transform: uppercase;
}

.kontakt-info a {
    text-decoration: underline;
}

.kontakt-info .info {
    text-align: left; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


@media (max-width: 1024px) {
    body { 
        display: flex;
        align-items: stretch;
        justify-content: center;
        flex-direction: column;
        height: 100vh; 
    }


    header > a {
        font-size: 1.1em;
        justify-content: center;
        align-items: center;
    }

    header > a > img {
        width: 5em;
        justify-content: center;
    }   
}

