@font-face {
    font-family: 'Poppins';
    src: url('../fonts/misc/Poppins-Regular.otf') format('opentype');
    font-weight: 1000;
    font-style: normal;
}
@font-face {
    font-family: 'Teko';
    src: url('../fonts/misc/Kall.otf') format('opentype');
    font-weight: 100 900;
    font-style: normal;
}
.container-vid-text {
    background-color: rgba(0, 0, 0, 0.6);
    display: block;
    align-items: stretch; /* Sprawia, że dzieci kontenera mają tę samą wysokość */
    justify-content: center;
    max-width: 800px;
    margin: 5px auto;
    padding: 0px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    z-index: 10;
}
.button-play{
    display: block;
    width: 100px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.7);
    margin: 0 auto;
    border-color:  rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.text {
    font-family: 'Poppins',sans-serif;
    text-align: left;
    margin-left: 4px;
    margin-right: 4px;
    color: #ffffff;
    width: 100%;
    font-size: 14px;
    padding-right: 0px;
}

.header-text {
    font-family: 'Teko',sans-serif;
    color: #ffffff;
    text-align: left;
    margin-left: 4px;
    font-size: 24px;

    width:100%;
}

.video-container {
    min-width: 100%; /* Dopasowanie szerokości */
    max-width: 100%;
    display: flex; /* Zapewnienie wyrównania */
    align-items: center; /* Wyśrodkowanie */
    justify-content: center;
}

.video-container video {
    min-width: 100%; /* Dopasowanie do szerokości kontenera */
    min-height: 100%; /* Dopasowanie do wysokości */
    object-fit: cover; /* Zapobiega zniekształceniom */
    padding: 0px;
    background-color: rgb(0, 0, 0);
    z-index: 1;
}
