html, body {
    margin: 0;
}

.full-screen-video-container {
    position: fixed;
    top: 0;
    left: 0;
    padding: 130px 0;
    height: 50vw;
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.full-screen-video-container video {
    z-index: -1;
    position: absolute;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.full-screen-video-content {
    background-color: white;
    color: #333;
    padding: 20px;
    font-size: 70px;
    margin-top: 100px;
    height: 130px;
}


{padding: 130px 0; overflow: hidden;}
