body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg.jpg'); /* Zmień nazwę pliku na nazwę Twojego pliku graficznego */
    background-size: cover;
    background-position: center;
    opacity: 0.5; /* Możesz dostosować przezroczystość tła */
    z-index: -1;
}

.content {
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 36px;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
}

.kancelaria, .filia {
    width: 45%;
}

@media screen and (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .kancelaria, .filia {
        width: 100%;
        margin-bottom: 20px;
    }
}
