*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    
}

.container {
    width:100%;
    height:100vh;
    background:#3c5077;
    display:flex;
    justify-content:center;
    align-items:center;
}

.btn {
 padding:10px 60px;
 background: #fff;
 border: 0;
 outline:none;
 cursor: pointer;
 font-size: 22px;
 font-weight: 500;
 border-radius: 30px;   
}

.popup{
   width: 400px;
   background: #fff;
   border-radius:6px;
   text-align: center;
   position: absolute; 
   top: 50%;
   left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    padding: 0 30px 30px;
    color: #333;
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
}

.open-popup {
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.popup img{
    width: 100px;
    margin-top: -50px;
    border-radius: 50%;
    box-shadow: 0 20px 5px rgba(0,0,0,0.2);

}

.popup h2 {
    font-size: 38px;
    font-weight: 500;
    margin: 30px 0 10px;
}
.popup button {
    width: 100%;
    margin-top: 50px;
    padding: 10px 0;
    background:#6fd649 ;
    color: white;
    border: 0;
    outline: none;
    font-size: 22px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0,0,0,0.2);
}
    