@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');


/*
.container{
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, #485563, #29323c);
    display: flex;
    align-items: center;
    justify-content: center;
} */
/*
.btn{
    padding: 10px 60px;
    background: #fff;
    border: 0;
    outline: none;
    cursor: pointer;
    font-size: 22px;
    font-weight: 500;
    border-radius: 10px;
    transition: transform 0.2s;
}*/

.ps-popupBtn:active{
    transform: scale(0.95);
} 

.ps-popup{
    width: 400px;
    background: #fff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    text-align: center;
    padding: 0 30px 60px;
    color: #333;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    border-radius: 2%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.ps-open-popup{
    visibility: visible;
    z-index: 999;
    backdrop-filter: blur(3px);
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.ps-popup img{
    width: 100px;
    margin-top: 0px;
    margin-left: 37px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.ps-popup h2{
    font-size: 28px;
    font-weight: 500;
    margin: 30px 0 10px;
}

.ps-popup button{
    width: 100%;
    margin-top: 20px;
    padding: 10px 0;
    background-color: #f11313;
    color: #fff;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    box-shadow: 0 5px 5px rgba(0,0,0,0.2);
}