@import url('https://fonts.googleapis.com/css2? family-Poppins:wght@300;400;500;600;700;800;900&display-swap');
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,700,900");

.container {
    background: #000000;
    font-family:"Montserrat",sans-serif ;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    width: 100vw;  /* Full viewport width */
}

.centered-div {
    /* background-color: lightblue; */
    padding: 20px;
    /* border: 2px solid blue; */
    text-align: center;
}
.loader{
position: relative;
cursor: default;
-webkit-box-reflect: below -25px linear-gradient(transparent,rgba(0, 0, 0,0.3));
}
.loader span{
    position: relative;
    display: inline-flex;
    font-size: 3em;
    color: #fff;
    -webkit-text-stroke: 1px #fff9;
   text-transform: uppercase;
   font-weight: 800;
   animation: animate 2s ease-in-out infinite;
   animation-delay: calc(0.15s * var(--i));


}
@keyframes animate {
    0%{
        transform: translateY(0px);
        color: transparent;

    }
    20%{
        transform: translateY(-60px);
        color: #fff;
        text-shadow: 0 0 5px #fff,
        0 0 25px #fff,
        0 0 50px #fff;
    }
    40%,100%{
        transform: translateY(0px);
        color: transparent;
        text-shadow: none;
    }
    
}