body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Wideo w orientacji pionowej będzie miało mniejszą szerokość */
@media (orientation: portrait) {
    .background-video {
        width: 100%;
        height: auto;
    }
}

.content {
    background: rgba(0, 0, 0, 0.5);
    padding: 2em;
    border-radius: 10px;
    z-index: 1;
    backdrop-filter: blur(5px);
}

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-size: 1.2em;
    font-weight: 300;
}