    body
        {
            margin: auto;
            display: flex;
            justify-content: center;
            overflow: hidden;
            font-family: Arial, Helvetica, sans-serif;
        }
        
        .video-outer
        {
            margin: auto;
            display: block;
            position: fixed;
            background: #000;
            height: 100vh;
            width: 100vw;
            top: 0px;
            left: 0px;
            overflow-y: scroll;
            scroll-snap-type:  y mandatory;
        }
        .vdx
        {
            margin: auto;
            display: block;
            top: 0px;
            height: 100vh;
            width: 100vw;
            scroll-snap-align: center;
            object-fit: contain;
        }
        .clz
        {
            position: fixed;
            z-index: 999999;
            top:10px;
            right: 10px;
            background-color: aliceblue;
            text-align: center;
            font-size: 20px;
            padding: 15px;
            border-radius: 5px;
            font-family: Arial, Helvetica, sans-serif;
            cursor: pointer;
        }
        
        
         .container
        {
            margin: auto;
            position: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #FFF;
            z-index: 9999;
            height: 65px;
            padding: 7px 15px;
            overflow: hidden;
            bottom: 20px;
            width: 88%;
            border-radius: 10px;
        }
        .row
        {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }
        h1
        {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 120%;
        }
        .link
        {
            background-color:#193514;
            font-family: Arial, Helvetica, sans-serif;
            padding: 10px 25px;
            text-decoration: none;
            color: #FFF;
            border-radius: 5px;
        }
        .container img
        {
            margin: auto;
            padding: 0px;
            width: 50px;
        }
        
        @media (max-width:640px)
        {
        .vdx
        {
            margin: auto;
            display: block;
            top: 0px;
            height: 100vh;
            width: 100vw;
            scroll-snap-align: center;
            object-fit: cover;
        }
        }