*{
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: black ;
    color: white;
    display: grid;
    place-items: center;
}

.app-vedio{
    position: relative;
    height: 99vh;
    background-color: black;
    overflow: scroll;
    width: 99vw;
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    scroll-snap-type: y mandatory;
}

.app-vedio::-webkit-scrollbar{
    display: none;
}

.vedio{
    position: relative;
    height: 100%;
    width: 100%;
    background-color: white;
    scroll-snap-align: start;
}

.vedio-player{
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.footer{
    display: flex;
    position: relative;
    bottom: 100px;
    margin-left: 20px;
}


@keyframes rotate{
    from{
        transform: rotate(0deg)
    }
    to{
        transform: rotate(350deg)
    }
}


.image-play{
    width: 55px;
    position: absolute;
    right: 25px;
    bottom: 25px;
    animation: rotate infinite 5s linear;
}

.footer-text{
    flex: 1;
}

.footer-text h3{
    padding bottom: 30px;
}

.img-marq{
    display: flex;
    align-items: center;
    width: 390px;
}

.img-marq img{
    width: 44px;
    margin-top: 4px;
}

.img-marq marquee{
    margin-left: 3px;
    margin-top: 10px;
    width: 65%;
}

html{
    scroll-snap-type: y mandatory;
}