
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    z-index: -1000;
}
.video-bg video {
    min-width: 100%; 
    min-height: 100%;
    width: auto; 
    height: auto;
    object-fit: cover;
}
.content {
    position: relative;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
img {
    max-width: 20%; /* Domyślna maksymalna szerokość dla ekranów komputerowych */
    height: auto;
}
.icons {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
a {
    color: #fff;
    font-size: 24px;
}
@media (max-width: 600px) {
    img {
        max-width: 60%; /* Zwiększenie maksymalnej szerokości dla urządzeń mobilnych */
    }
    .icons {
        flex-direction: row; /* Ikony obok siebie na urządzeniach mobilnych */
        flex-wrap: wrap;
        justify-content: center;
    }
}
