body {
    background-color: rgb(0, 0, 0);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: monospace;

}
.tax{
    color: #07ee03;

}

.ani{
    width:0;
    overflow:hidden;
    white-space:nowrap;
    border-right:3px solid #00ff00;
    animation:typing 2s steps(30) forwards;
    font-size: 20px;
    }
    
    p:nth-child(1){animation-delay:0s;}
    p:nth-child(2){animation-delay:2s;}
    p:nth-child(3){animation-delay:4s;}
    p:nth-child(4){animation-delay:6s;}
    
    @keyframes typing{
    from{width:0}
    to{width:100%}
    }

        
.loader-box{
width:400px;
}
        
.bar{
width:100%;
height:20px;
border:1px solid #00ff00;
margin-top:10px;
}
        
 .progress{
 width:0%;
height:100%;
 background:#00ff00;
 box-shadow:0 0 10px #00ff00;
 }
 
 .loading-text{
 margin-bottom:10px;
 }

 .popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    
    display:flex;
    justify-content:center;
    align-items:center;
    
    opacity:0;
    pointer-events:none;
    transition:0.4s;
    }
    
    .popup-box{
    border:1px solid #00ff00;
    padding: 25px 50px 50px 50px;
    color:#00ff00;
    font-family:monospace;
    box-shadow:0 0 20px #00ff00;
    background:black;
    font-size: 30px;
    text-align: center;
    line-height: 50px;
    }
    
    /* وقتی باز میشه */
    .popup.show{
    opacity:1;
    pointer-events:auto;
    }

.kik{
    background-color: red;
    color: rgb(255, 255, 255);
    padding: 10px 50px 10px 50px;
    font-size: 23px;
    
}
.gp{
    gap: 20;
}
.fg{
    color: black;
}






