<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body {
    padding: 0px;
    margin: 0px;
     animation: body-over 8s ;
     animation-iteration-count: 1;
     overflow-x: hidden;
     background: #000000;
} 
@keyframes body-over {
    0%{

        overflow: hidden;

    }

    50%{
        overflow: hidden;

    }
    100%{
        overflow: hidden;   
     }
}


#main-container {
    background-image: url("../images/upstock-2.webp");

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: images 8s ;
    animation-delay: 0.5s;
    animation-iteration-count: 1;
    overflow: hidden;
    position: absolute;
    /* top: -150%; */
    transform: scale(1.5) translateY(-150%); 
    z-index: 100000;
}
@keyframes images {
    0%{

        transform: scale(1.5) translateY(0%);
        /* top: 0; */

    }

    50%{
        transform: scale(1.0) translateY(0%);
        /* top: 0; */

    }
    /* 55%{
        top: 0;
    } */
    100%{
        transform: scale(1.0) translateY(-150%);
        
    }
}
.container {
    padding: auto;
}

.animate-charcter {
    text-transform: uppercase;
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: rgb(255, 255, 255);
    /* -webkit-background-clip: text; */
    /* -webkit-text-stroke: 2px rgb(0, 0, 0); */
    overflow: hidden;
    text-shadow: 2px 2px 5px rgb(0, 0, 0);
    /* -webkit-background-clip: text; */
    animation: textclip 8s ;
    transform: scale(1.5);

    animation-delay: 0.5s;
    animation-fill-mode: both;

    animation-iteration-count: 1;
    z-index: 1000000;
    
    font-size: 170px;

}









@keyframes textclip {
    0%{

        transform: scale(1.5);
        /* color: white; */
    }

    50%{
        transform: scale(1.0);
        /* color: white; */
    }

    100%{
        transform: scale(1.0);

    }

}

@media (max-width:1050px){
    #main-container .animate-charcter{
        font-size: 150px;
    }
    .fest-header .xenium-heading{
        font-size: 150px;
    }

}

@media (max-width:500px){
    #main-container .animate-charcter{
        font-size: 90px;

        position: relative;
        left: -30px;
    }
    .lottie-hologram{
        width: 90%;
        height: 600px;
    }

    .fest-header .xenium-heading{
        font-size: 90px;
        animation-name: Xenium-mobile;
        animation-duration: 8s;
        animation-iteration-count: 1;

    }
    @keyframes Xenium-mobile {
        0%{
    
            visibility: hidden;
            transform: translateY(500px);
            font-size: 60px;
            color: transparent;
            -webkit-text-stroke: 2px #fff;
            filter: brightness(0.7);
    
    
    
        }
    
    
        30%{
            color: transparent;
            -webkit-text-stroke: 2px #fff;
            visibility: hidden;
            transform: translateY(500px);
            filter: brightness(1);
            font-size: 60px;
            filter: brightness(0.7);
            
        }
        70%{
            color: transparent;
            -webkit-text-stroke: 2px #fff;
            font-size: 60px;
            
        }
        80%{
            font-size: 70px;
        }
        100%{
            /* transform: translateY(-50px); */
    
        }
        
    }
      


}



/* this is for the loader */

.nav-elements{
    z-index: -100;
}

body{
    background-color: rgb(0, 0, 0);

}



.loading__wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000;
    z-index: 200;
 }
  .loading__wrapper .loader--text {
    color: #fff;
    font-family: "Montserrat";
    font-weight: 500;
    margin-bottom: 1.4rem;
 }
  .loading__wrapper .loader {
    position: relative;
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
 }
  .loading__wrapper .loader span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #f00;
    transform: scaleX(0);
    transform-origin: left;
 }


</pre></body></html>