#introAnim {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-color: white;
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-24px);
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

video {
    transition: all 1s ease;
    height: 400px;
    opacity: 0;
    transform: translateX(-12px);
}

.opacity_out {
  opacity: 0;
}


.intro_in {
    opacity: 1;
}

@media screen and (min-width: 60rem) {
    video {
        height: 750px;
    }
    
}