.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.animated-row {
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    height: 100vh;
}
.slide {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: white;
}
.slide:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.7);
}
.slide:nth-child(even) {
    background-color: rgba(255, 165, 0, 0.7);
}
