@font-face {
            font-family: 'micro';
            src: url(../font/Micro5-Regular.ttf);
        }
       *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: micro;
    font-size: 30px;
}
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
        .loader {
            width: 100%;
            height: 100%;
            position: absolute;
            z-index: 1000;
            opacity: 1;
            animation: fadeOutLoader 7.5s  forwards; 
        }

        @keyframes fadeOutLoader {
            0% {
                opacity: 1;
                z-index: 1000;
                transform: translateY(0);
            }
            80% {
                opacity: 1;
                transform: translateY(0);
            }
            100% {
                
                z-index: -1; 
                transform: translateY(-100%);
            }
        }
        .videoclass{
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: black;
        }
        video{
            width:400px;
            height: 400px;
            
        }