
.overlay {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    backdrop-filter: blur(5px); 
    -webkit-backdrop-filter: blur(5px); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    z-index: 999; 
}
.abx{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    max-width: 800px;
    width: 100%;
    padding: 30px;
    background-color: #16d38d;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.7); 
    transition: box-shadow 0.3s ease-in-out;

     position: relative;
    z-index: 1000;
}
.box{
    
    padding:0  50px;
    justify-content: center;
    align-items: center;
}
.box p{
    font-size: 30px;
    font-family: monospace;
    color: red;
}
.box p:last-child{
    text-align: center;
}
