#main-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/stronaglowna.png");
    height: 100vh;
    align-items: center;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    width: 100%;
}
#logo{
    width: 200px;
    margin-bottom: 20px;
}
.page-title {
    font-size: 32px;
    line-height: 1.3;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}
.title{
    font-size: 46px;
    margin-top: 40px;
    line-height: 1.2;
    text-align: center;
}
.text-wrapper {
    color: #ffffff;
    padding: 20px;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media only screen and (max-width: 900px) {
    #main-bg {
        height: 500px; /* Dostosowana wysokość */
        background-size: 200%;
        background-position: top;
    }
    .page-title {
        font-size: 28px; /* Dostosowana wielkość czcionki */
    }
    .page-info {
        font-size: 18px; /* Dostosowana wielkość czcionki */
    }
    .title {
        font-size: 36px; /* Dostosowana wielkość czcionki */
    }
    .text-wrapper {
        padding: 5px; /* Dostosowany padding */
    }
    #logo {
        width: 150px; /* Dostosowana szerokość */
        margin-bottom: 15px; /* Dostosowany margines */
    }
}
