body{
    height: fit-content;
}
.container{
    height: fit-content
}
.main{
    background-image: url(../images/pow.jpg);
}
.vids-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    transform: translateY(100vh);
    animation: slideUp 4s ease-in-out forwards;
}
.video{
    width: 33.3%;
    height: 35vh;
}
@media screen and (max-width:600px){
    .vids-container{
        flex-direction: column;
    }
    .video{
        width: 100%;
        height: 50vh;
    }

}
    

