.video-background {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}
  
#container {
    height: 500vh;
}

.text-wrapper{
    position: fixed;
    height: 100vh;
    width: 100vw;
}

.show-text{
    position: absolute;
    top: 50%;
    right: 20%;
    font-size: 60px;
    opacity: 0;
    transform: translateY(-60px);
    transition: all ease 0.3s;
}
.show-text.visible{
    opacity: 1;
    transform: translateY(0);
}